[][src]Struct pkcs11::types::CK_DATE

#[repr(C)]pub struct CK_DATE {
    pub year: [CK_CHAR; 4],
    pub month: [CK_CHAR; 2],
    pub day: [CK_CHAR; 2],
}

CK_DATE is a structure that defines a date

Fields

year: [CK_CHAR; 4]

the year ("1900" - "9999")

month: [CK_CHAR; 2]

the month ("01" - "12")

day: [CK_CHAR; 2]

the day ("01" - "31")

Trait Implementations

impl Clone for CK_DATE[src]

impl Copy for CK_DATE[src]

impl Debug for CK_DATE[src]

impl Default for CK_DATE[src]

Auto Trait Implementations

impl RefUnwindSafe for CK_DATE

impl Send for CK_DATE

impl Sync for CK_DATE

impl Unpin for CK_DATE

impl UnwindSafe for CK_DATE

Blanket Implementations

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

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

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

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.