Struct CardWriteFileInfo
#[repr(C)]pub struct CardWriteFileInfo {
pub app_info: AppIdInfo,
pub file_access: CardFileAccessInfo,
pub data_len: u32,
pub data: [u8; 4096],
}Fields§
§app_info: AppIdInfoApplication identification information.
file_access: CardFileAccessInfoFile access information.
data_len: u32Must be set to the number of elements in data.
data: [u8; 4096]Data to be updated on the card.
Auto Trait Implementations§
impl Freeze for CardWriteFileInfo
impl RefUnwindSafe for CardWriteFileInfo
impl Send for CardWriteFileInfo
impl Sync for CardWriteFileInfo
impl Unpin for CardWriteFileInfo
impl UnwindSafe for CardWriteFileInfo
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