[]Struct openssl::asn1::Asn1Time

pub struct Asn1Time(_);

Time storage and comparison

Asn1Time should be used to store and share time information using certificates. If Asn1Time is set using a string, it must be in either YYMMDDHHMMSSZ, YYYYMMDDHHMMSSZ, or another ASN.1 format.

ASN_TIME_set documentation at OpenSSL explains the ASN.1 implementaiton used by OpenSSL.

Methods

impl Asn1Time[src]

pub fn days_from_now(days: u32) -> Result<Asn1Time, ErrorStack>[src]

Creates a new time on specified interval in days from now

pub fn from_str(s: &str) -> Result<Asn1Time, ErrorStack>[src]

Creates a new time corresponding to the specified ASN1 time string.

This corresponds to ASN1_TIME_set_string.

Trait Implementations

impl Drop for Asn1Time

impl AsRef<Asn1TimeRef> for Asn1Time

impl Sync for Asn1Time[src]

impl Send for Asn1Time[src]

impl DerefMut for Asn1Time

impl Deref for Asn1Time

type Target = Asn1TimeRef

The resulting type after dereferencing.

impl Borrow<Asn1TimeRef> for Asn1Time

impl ForeignType for Asn1Time

type CType = ASN1_TIME

The raw C type.

type Ref = Asn1TimeRef

The type representing a reference to this type.

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.