Struct CardFileAccessInfo
#[repr(C)]pub struct CardFileAccessInfo {
pub offset: u16,
pub record_num: u8,
pub path_len: u32,
pub path: [c_char; 20],
}Fields§
§offset: u16Offset is only required for write file access where data length is indicated.
record_num: u8Number of records involved in file access. A record number of 0 indicates transparent file access.
path_len: u32Must be set to the number of elements in the path.
path: [c_char; 20]File path in ASCII characters.
Auto Trait Implementations§
impl Freeze for CardFileAccessInfo
impl RefUnwindSafe for CardFileAccessInfo
impl Send for CardFileAccessInfo
impl Sync for CardFileAccessInfo
impl Unpin for CardFileAccessInfo
impl UnwindSafe for CardFileAccessInfo
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