Struct cryptoki::types::UtcTime

source ·
pub struct UtcTime {
    pub year: u16,
    pub month: u8,
    pub day: u8,
    pub hour: u8,
    pub minute: u8,
    pub second: u8,
}
Expand description

A UTC datetime returned by a token’s clock if present.

Fields§

§year: u16

Conformance: Guaranteed to be in range 0..=9999

§month: u8

Conformance: Guaranteed to be in range 0..=99

§day: u8

Conformance: Guaranteed to be in range 0..=99

§hour: u8

Conformance: Guaranteed to be in range 0..=99

§minute: u8

Conformance: Guaranteed to be in range 0..=99

§second: u8

Conformance: Guaranteed to be in range 0..=99

Implementations§

source§

impl UtcTime

source

pub fn as_iso8601_string(&self) -> String

Stringify the structure in ISO 8601 format.

PKCS#11 and ISO are unrelated standards, and this function is provided only for convenience. ISO format is more widely recognized and parsable by various date/time utilities, while PKCS#11’s internal representation of this type is is not used elsewhere. Other than formatting, this crate does not guarantee or enforce any part of the ISO standard.

Trait Implementations§

source§

impl Clone for UtcTime

source§

fn clone(&self) -> UtcTime

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for UtcTime

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Copy for UtcTime

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.