Struct CardGetFileSizeInputInfo
#[repr(C)]pub struct CardGetFileSizeInputInfo {
pub app_info: AppIdInfo,
pub path_len: u32,
pub path: [c_char; 20],
}Expand description
Retrieves the size of a specific file on a specified application on the card.
Fields§
§app_info: AppIdInfoApplication identification information.
path_len: u32Must be set to the number of elements in path.
path: [c_char; 20]File path in ASCII characters.
Auto Trait Implementations§
impl Freeze for CardGetFileSizeInputInfo
impl RefUnwindSafe for CardGetFileSizeInputInfo
impl Send for CardGetFileSizeInputInfo
impl Sync for CardGetFileSizeInputInfo
impl Unpin for CardGetFileSizeInputInfo
impl UnwindSafe for CardGetFileSizeInputInfo
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