pub struct CardInventory {
pub security_domains: Vec<SecurityDomainEntry, MAX_SDS>,
pub applets: Vec<ApplicationEntry, MAX_APPLETS>,
pub elfs: Vec<ExecutableLoadFileEntry, MAX_ELFS>,
}Expand description
Object inventory snapshot — the payload of get_card_inventory
(GetCardInventoryReport, PDD §5.12a). A point-in-time view, stale after the
next management operation.
Fields§
§security_domains: Vec<SecurityDomainEntry, MAX_SDS>§applets: Vec<ApplicationEntry, MAX_APPLETS>§elfs: Vec<ExecutableLoadFileEntry, MAX_ELFS>Trait Implementations§
Auto Trait Implementations§
impl Freeze for CardInventory
impl RefUnwindSafe for CardInventory
impl Send for CardInventory
impl Sync for CardInventory
impl Unpin for CardInventory
impl UnsafeUnpin for CardInventory
impl UnwindSafe for CardInventory
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