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