pub struct Emmc {
pub capacity: CardCapacity,
pub ocr: OCR<EMMC>,
pub rca: u16,
pub cid: CID<EMMC>,
pub csd: CSD<EMMC>,
pub ext_csd: ExtCSD,
}
Expand description
eMMC storage
Fields§
§capacity: CardCapacity
The capacity of this card
ocr: OCR<EMMC>
Operation Conditions Register
rca: u16
Relative Card Address
cid: CID<EMMC>
Card ID
csd: CSD<EMMC>
Card Specific Data
ext_csd: ExtCSD
Extended Card Specific Data
Trait Implementations§
impl Copy for Emmc
Auto Trait Implementations§
impl Freeze for Emmc
impl RefUnwindSafe for Emmc
impl Send for Emmc
impl Sync for Emmc
impl Unpin for Emmc
impl UnwindSafe for Emmc
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