pub struct CqhciHostInfo<T0, T1, T2, T3> {
pub sdmmc_host_info: T0,
pub partitions: T1,
pub rca: T2,
pub ext_csd: T3,
}Expand description
The generic type corresponding to CqhciHostInfo.
Fields§
§sdmmc_host_info: T0§partitions: T1§rca: T2§ext_csd: T3Trait Implementations§
Source§impl<___E, T0, T1, T2, T3> Encode<CqhciHostInfo<'static>, ___E> for CqhciHostInfo<T0, T1, T2, T3>where
___E: InternalHandleEncoder + ?Sized + Encoder,
T0: Encode<SdmmcHostInfo, ___E>,
T1: Encode<Vector<'static, EmmcPartition>, ___E>,
T2: Encode<Uint16, ___E>,
T3: Encode<Vector<'static, u8>, ___E>,
impl<___E, T0, T1, T2, T3> Encode<CqhciHostInfo<'static>, ___E> for CqhciHostInfo<T0, T1, T2, T3>where
___E: InternalHandleEncoder + ?Sized + Encoder,
T0: Encode<SdmmcHostInfo, ___E>,
T1: Encode<Vector<'static, EmmcPartition>, ___E>,
T2: Encode<Uint16, ___E>,
T3: Encode<Vector<'static, u8>, ___E>,
Source§fn encode(
self,
encoder_: &mut ___E,
out_: &mut MaybeUninit<CqhciHostInfo<'static>>,
_: (),
) -> Result<(), EncodeError>
fn encode( self, encoder_: &mut ___E, out_: &mut MaybeUninit<CqhciHostInfo<'static>>, _: (), ) -> Result<(), EncodeError>
Encodes this value into an encoder and output.
§const COPY_OPTIMIZATION: CopyOptimization<Self, W> = _
const COPY_OPTIMIZATION: CopyOptimization<Self, W> = _
Auto Trait Implementations§
impl<T0, T1, T2, T3> Freeze for CqhciHostInfo<T0, T1, T2, T3>
impl<T0, T1, T2, T3> RefUnwindSafe for CqhciHostInfo<T0, T1, T2, T3>
impl<T0, T1, T2, T3> Send for CqhciHostInfo<T0, T1, T2, T3>
impl<T0, T1, T2, T3> Sync for CqhciHostInfo<T0, T1, T2, T3>
impl<T0, T1, T2, T3> Unpin for CqhciHostInfo<T0, T1, T2, T3>
impl<T0, T1, T2, T3> UnwindSafe for CqhciHostInfo<T0, T1, T2, T3>
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]