#[repr(C)]pub struct SdmmcRequestRequest<'de> {
pub reqs: Vector<'de, SdmmcReq<'de>>,
}Expand description
The wire type corresponding to SdmmcRequestRequest.
Fields§
§reqs: Vector<'de, SdmmcReq<'de>>Trait Implementations§
Source§impl Constrained for SdmmcRequestRequest<'_>
impl Constrained for SdmmcRequestRequest<'_>
Source§impl<'de> Debug for SdmmcRequestRequest<'de>
impl<'de> Debug for SdmmcRequestRequest<'de>
Source§impl<'de, ___D> Decode<___D> for SdmmcRequestRequest<'de>where
___D: InternalHandleDecoder + ?Sized + Decoder<'de> + HandleDecoder,
impl<'de, ___D> Decode<___D> for SdmmcRequestRequest<'de>where
___D: InternalHandleDecoder + ?Sized + Decoder<'de> + HandleDecoder,
Source§impl<___E> Encode<SdmmcRequestRequest<'static>, ___E> for SdmmcRequestRequestwhere
___E: InternalHandleEncoder + ?Sized + Encoder + HandleEncoder,
impl<___E> Encode<SdmmcRequestRequest<'static>, ___E> for SdmmcRequestRequestwhere
___E: InternalHandleEncoder + ?Sized + Encoder + HandleEncoder,
Source§fn encode(
self,
encoder_: &mut ___E,
out_: &mut MaybeUninit<SdmmcRequestRequest<'static>>,
_: (),
) -> Result<(), EncodeError>
fn encode( self, encoder_: &mut ___E, out_: &mut MaybeUninit<SdmmcRequestRequest<'static>>, _: (), ) -> 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> Encode<SdmmcRequestRequest<'static>, ___E> for SdmmcRequestRequest<T0>
impl<___E, T0> Encode<SdmmcRequestRequest<'static>, ___E> for SdmmcRequestRequest<T0>
Source§fn encode(
self,
encoder_: &mut ___E,
out_: &mut MaybeUninit<SdmmcRequestRequest<'static>>,
_: (),
) -> Result<(), EncodeError>
fn encode( self, encoder_: &mut ___E, out_: &mut MaybeUninit<SdmmcRequestRequest<'static>>, _: (), ) -> Result<(), EncodeError>
Encodes this value into an encoder and output.
§const COPY_OPTIMIZATION: CopyOptimization<Self, W> = _
const COPY_OPTIMIZATION: CopyOptimization<Self, W> = _
Source§impl<'de> FromWire<SdmmcRequestRequest<'de>> for SdmmcRequestRequest
impl<'de> FromWire<SdmmcRequestRequest<'de>> for SdmmcRequestRequest
Source§fn from_wire(wire: SdmmcRequestRequest<'de>) -> Self
fn from_wire(wire: SdmmcRequestRequest<'de>) -> Self
Converts the given owned value to this type.
§const COPY_OPTIMIZATION: CopyOptimization<W, Self> = _
const COPY_OPTIMIZATION: CopyOptimization<W, Self> = _
Source§impl<'de> IntoNatural for SdmmcRequestRequest<'de>
impl<'de> IntoNatural for SdmmcRequestRequest<'de>
Source§type Natural = SdmmcRequestRequest
type Natural = SdmmcRequestRequest
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 SdmmcRequestRequest<'static>
impl Wire for SdmmcRequestRequest<'static>
Source§type Narrowed<'de> = SdmmcRequestRequest<'de>
type Narrowed<'de> = SdmmcRequestRequest<'de>
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<'de> Freeze for SdmmcRequestRequest<'de>
impl<'de> RefUnwindSafe for SdmmcRequestRequest<'de>
impl<'de> Send for SdmmcRequestRequest<'de>
impl<'de> Sync for SdmmcRequestRequest<'de>
impl<'de> Unpin for SdmmcRequestRequest<'de>
impl<'de> !UnwindSafe for SdmmcRequestRequest<'de>
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]