Struct CardFileData
#[repr(C)]pub struct CardFileData {
pub data_len: u32,
pub data: [u8; 4096],
}Fields§
§data_len: u32Must be set to the number of elements in data.
data: [u8; 4096]Data retrieved from the card.
Auto Trait Implementations§
impl Freeze for CardFileData
impl RefUnwindSafe for CardFileData
impl Send for CardFileData
impl Sync for CardFileData
impl Unpin for CardFileData
impl UnwindSafe for CardFileData
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