Struct yubihsm::commands::storage_status::StorageStatusResponse[][src]

pub struct StorageStatusResponse {
    pub total_records: u16,
    pub free_records: u16,
    pub total_pages: u16,
    pub free_pages: u16,
    pub page_size: u16,
}

Response from commands::storage_status

Fields

Total number of storage records

Storage records which are currently free

Total number of storage pages

Storage pages which are currently free

Page size in bytes

Trait Implementations

impl Debug for StorageStatusResponse
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations