#[repr(C)]pub struct RetrievedItems {
pub payload: Vmo,
pub length: Uint32,
pub extra: Uint32,
}Expand description
The wire type corresponding to RetrievedItems.
Fields§
§payload: Vmo§length: Uint32§extra: Uint32Trait Implementations§
Source§impl Constrained for RetrievedItems
impl Constrained for RetrievedItems
Source§impl Debug for RetrievedItems
impl Debug for RetrievedItems
Source§impl<___D> Decode<___D> for RetrievedItemswhere
___D: InternalHandleDecoder + ?Sized + HandleDecoder,
impl<___D> Decode<___D> for RetrievedItemswhere
___D: InternalHandleDecoder + ?Sized + HandleDecoder,
Source§impl<___E> Encode<RetrievedItems, ___E> for RetrievedItemswhere
___E: InternalHandleEncoder + ?Sized + HandleEncoder,
impl<___E> Encode<RetrievedItems, ___E> for RetrievedItemswhere
___E: InternalHandleEncoder + ?Sized + HandleEncoder,
Source§const COPY_OPTIMIZATION: CopyOptimization<Self, RetrievedItems>
const COPY_OPTIMIZATION: CopyOptimization<Self, RetrievedItems>
Source§fn encode(
self,
encoder_: &mut ___E,
out_: &mut MaybeUninit<RetrievedItems>,
_: (),
) -> Result<(), EncodeError>
fn encode( self, encoder_: &mut ___E, out_: &mut MaybeUninit<RetrievedItems>, _: (), ) -> Result<(), EncodeError>
Encodes this value into an encoder and output.
Source§impl<___E, T0, T1, T2> Encode<RetrievedItems, ___E> for RetrievedItems<T0, T1, T2>where
___E: InternalHandleEncoder + ?Sized + HandleEncoder,
T0: Encode<Vmo, ___E>,
T1: Encode<Uint32, ___E>,
T2: Encode<Uint32, ___E>,
impl<___E, T0, T1, T2> Encode<RetrievedItems, ___E> for RetrievedItems<T0, T1, T2>where
___E: InternalHandleEncoder + ?Sized + HandleEncoder,
T0: Encode<Vmo, ___E>,
T1: Encode<Uint32, ___E>,
T2: Encode<Uint32, ___E>,
Source§fn encode(
self,
encoder_: &mut ___E,
out_: &mut MaybeUninit<RetrievedItems>,
_: (),
) -> Result<(), EncodeError>
fn encode( self, encoder_: &mut ___E, out_: &mut MaybeUninit<RetrievedItems>, _: (), ) -> 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<RetrievedItems> for RetrievedItems
impl FromWire<RetrievedItems> for RetrievedItems
Source§const COPY_OPTIMIZATION: CopyOptimization<RetrievedItems, Self>
const COPY_OPTIMIZATION: CopyOptimization<RetrievedItems, Self>
Source§fn from_wire(wire: RetrievedItems) -> Self
fn from_wire(wire: RetrievedItems) -> Self
Converts the given owned value to this type.
Source§impl IntoNatural for RetrievedItems
impl IntoNatural for RetrievedItems
Source§type Natural = RetrievedItems
type Natural = RetrievedItems
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 RetrievedItems
impl Wire for RetrievedItems
Source§type Narrowed<'de> = RetrievedItems
type Narrowed<'de> = RetrievedItems
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 RetrievedItems
impl RefUnwindSafe for RetrievedItems
impl Send for RetrievedItems
impl Sync for RetrievedItems
impl Unpin for RetrievedItems
impl UnsafeUnpin for RetrievedItems
impl UnwindSafe for RetrievedItems
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]