[][src]Struct pkcs11::types::CK_SLOT_INFO

#[repr(packed, C)]
pub struct CK_SLOT_INFO {
    pub slotDescription: [CK_UTF8CHAR; 64],
    pub manufacturerID: [CK_UTF8CHAR; 32],
    pub flags: CK_FLAGS,
    pub hardwareVersion: CK_VERSION,
    pub firmwareVersion: CK_VERSION,
}

Fields

slotDescription: [CK_UTF8CHAR; 64]

slotDescription and manufacturerID have been changed from CK_CHAR to CK_UTF8CHAR for v2.10

manufacturerID: [CK_UTF8CHAR; 32]flags: CK_FLAGShardwareVersion: CK_VERSION

version of hardware

firmwareVersion: CK_VERSION

version of firmware

Trait Implementations

impl Default for CK_SLOT_INFO[src]

impl Debug for CK_SLOT_INFO[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]