pub struct SdmmcReq<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9> {
pub cmd_idx: T0,
pub cmd_flags: T1,
pub arg: T2,
pub blocksize: T3,
pub suppress_error_messages: T4,
pub client_id: T5,
pub use_inline_crypto: T6,
pub slot: T7,
pub dun: T8,
pub buffers: T9,
}Expand description
The generic type corresponding to SdmmcReq.
Fields§
§cmd_idx: T0§cmd_flags: T1§arg: T2§blocksize: T3§suppress_error_messages: T4§client_id: T5§use_inline_crypto: T6§slot: T7§dun: T8§buffers: T9Trait Implementations§
Source§impl<___E, T0, T1, T2, T3, T4, T5, T6, T7, T8, T9> Encode<SdmmcReq<'static>, ___E> for SdmmcReq<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9>where
___E: InternalHandleEncoder + ?Sized + Encoder + HandleEncoder,
T0: Encode<Uint32, ___E>,
T1: Encode<Uint32, ___E>,
T2: Encode<Uint32, ___E>,
T3: Encode<Uint32, ___E>,
T4: Encode<bool, ___E>,
T5: Encode<u8, ___E>,
T6: Encode<bool, ___E>,
T7: Encode<u8, ___E>,
T8: Encode<Uint32, ___E>,
T9: Encode<Vector<'static, SdmmcBufferRegion>, ___E>,
impl<___E, T0, T1, T2, T3, T4, T5, T6, T7, T8, T9> Encode<SdmmcReq<'static>, ___E> for SdmmcReq<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9>where
___E: InternalHandleEncoder + ?Sized + Encoder + HandleEncoder,
T0: Encode<Uint32, ___E>,
T1: Encode<Uint32, ___E>,
T2: Encode<Uint32, ___E>,
T3: Encode<Uint32, ___E>,
T4: Encode<bool, ___E>,
T5: Encode<u8, ___E>,
T6: Encode<bool, ___E>,
T7: Encode<u8, ___E>,
T8: Encode<Uint32, ___E>,
T9: Encode<Vector<'static, SdmmcBufferRegion>, ___E>,
Auto Trait Implementations§
impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9> Freeze for SdmmcReq<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9>
impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9> RefUnwindSafe for SdmmcReq<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9>where
T0: RefUnwindSafe,
T1: RefUnwindSafe,
T2: RefUnwindSafe,
T3: RefUnwindSafe,
T4: RefUnwindSafe,
T5: RefUnwindSafe,
T6: RefUnwindSafe,
T7: RefUnwindSafe,
T8: RefUnwindSafe,
T9: RefUnwindSafe,
impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9> Send for SdmmcReq<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9>
impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9> Sync for SdmmcReq<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9>
impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9> Unpin for SdmmcReq<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9>
impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9> UnwindSafe for SdmmcReq<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9>where
T0: UnwindSafe,
T1: UnwindSafe,
T2: UnwindSafe,
T3: UnwindSafe,
T4: UnwindSafe,
T5: UnwindSafe,
T6: UnwindSafe,
T7: UnwindSafe,
T8: UnwindSafe,
T9: UnwindSafe,
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]