pub struct EmmcDeviceInfo<T0, T1, T2> {
pub cid: T0,
pub rpmb_size: T1,
pub reliable_write_sector_count: T2,
}Expand description
The generic type corresponding to EmmcDeviceInfo.
Fields§
§cid: T0§rpmb_size: T1§reliable_write_sector_count: T2Trait Implementations§
Source§impl<___E, T0, T1, T2> Encode<EmmcDeviceInfo, ___E> for EmmcDeviceInfo<T0, T1, T2>
impl<___E, T0, T1, T2> Encode<EmmcDeviceInfo, ___E> for EmmcDeviceInfo<T0, T1, T2>
Source§fn encode(
self,
encoder_: &mut ___E,
out_: &mut MaybeUninit<EmmcDeviceInfo>,
_: (),
) -> Result<(), EncodeError>
fn encode( self, encoder_: &mut ___E, out_: &mut MaybeUninit<EmmcDeviceInfo>, _: (), ) -> 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> Freeze for EmmcDeviceInfo<T0, T1, T2>
impl<T0, T1, T2> RefUnwindSafe for EmmcDeviceInfo<T0, T1, T2>
impl<T0, T1, T2> Send for EmmcDeviceInfo<T0, T1, T2>
impl<T0, T1, T2> Sync for EmmcDeviceInfo<T0, T1, T2>
impl<T0, T1, T2> Unpin for EmmcDeviceInfo<T0, T1, T2>
impl<T0, T1, T2> UnwindSafe for EmmcDeviceInfo<T0, T1, T2>
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]