#[repr(C)]pub struct ViewPresentRequest {
pub view_token: ViewToken,
}Expand description
The wire type corresponding to ViewPresentRequest.
Fields§
§view_token: ViewTokenTrait Implementations§
Source§impl Constrained for ViewPresentRequest
impl Constrained for ViewPresentRequest
Source§impl Debug for ViewPresentRequest
impl Debug for ViewPresentRequest
Source§impl<___D> Decode<___D> for ViewPresentRequestwhere
___D: InternalHandleDecoder + ?Sized + HandleDecoder,
impl<___D> Decode<___D> for ViewPresentRequestwhere
___D: InternalHandleDecoder + ?Sized + HandleDecoder,
Source§impl<___E> Encode<ViewPresentRequest, ___E> for ViewPresentRequestwhere
___E: InternalHandleEncoder + ?Sized + HandleEncoder,
impl<___E> Encode<ViewPresentRequest, ___E> for ViewPresentRequestwhere
___E: InternalHandleEncoder + ?Sized + HandleEncoder,
Source§const COPY_OPTIMIZATION: CopyOptimization<Self, ViewPresentRequest>
const COPY_OPTIMIZATION: CopyOptimization<Self, ViewPresentRequest>
Source§fn encode(
self,
encoder_: &mut ___E,
out_: &mut MaybeUninit<ViewPresentRequest>,
_: (),
) -> Result<(), EncodeError>
fn encode( self, encoder_: &mut ___E, out_: &mut MaybeUninit<ViewPresentRequest>, _: (), ) -> Result<(), EncodeError>
Encodes this value into an encoder and output.
Source§impl<___E, T0> Encode<ViewPresentRequest, ___E> for ViewPresentRequest<T0>
impl<___E, T0> Encode<ViewPresentRequest, ___E> for ViewPresentRequest<T0>
Source§fn encode(
self,
encoder_: &mut ___E,
out_: &mut MaybeUninit<ViewPresentRequest>,
_: (),
) -> Result<(), EncodeError>
fn encode( self, encoder_: &mut ___E, out_: &mut MaybeUninit<ViewPresentRequest>, _: (), ) -> Result<(), EncodeError>
Encodes this value into an encoder and output.
§const COPY_OPTIMIZATION: CopyOptimization<Self, W> = _
const COPY_OPTIMIZATION: CopyOptimization<Self, W> = _
Source§impl FromWire<ViewPresentRequest> for ViewPresentRequest
impl FromWire<ViewPresentRequest> for ViewPresentRequest
Source§const COPY_OPTIMIZATION: CopyOptimization<ViewPresentRequest, Self>
const COPY_OPTIMIZATION: CopyOptimization<ViewPresentRequest, Self>
Source§fn from_wire(wire: ViewPresentRequest) -> Self
fn from_wire(wire: ViewPresentRequest) -> Self
Converts the given owned value to this type.
Source§impl IntoNatural for ViewPresentRequest
impl IntoNatural for ViewPresentRequest
Source§type Natural = ViewPresentRequest
type Natural = ViewPresentRequest
A good default type for this wire type to convert into.
§fn into_natural(self) -> Self::Natural
fn into_natural(self) -> Self::Natural
Converts this type into its natural equivalent.
Source§impl Wire for ViewPresentRequest
impl Wire for ViewPresentRequest
Source§type Narrowed<'de> = ViewPresentRequest
type Narrowed<'de> = ViewPresentRequest
The narrowed wire type, restricted to the
'de lifetime.Source§fn zero_padding(out_: &mut MaybeUninit<Self>)
fn zero_padding(out_: &mut MaybeUninit<Self>)
Writes zeroes to the padding for this type, if any.
Auto Trait Implementations§
impl Freeze for ViewPresentRequest
impl RefUnwindSafe for ViewPresentRequest
impl Send for ViewPresentRequest
impl Sync for ViewPresentRequest
impl Unpin for ViewPresentRequest
impl UnsafeUnpin for ViewPresentRequest
impl UnwindSafe for ViewPresentRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> InstanceFromServiceTransport<T> for T
impl<T> InstanceFromServiceTransport<T> for T
§fn from_service_transport(handle: T) -> T
fn from_service_transport(handle: T) -> T
Converts the given service transport handle of type
T to [Self]