[]Struct openssl::asn1::Asn1GeneralizedTime

pub struct Asn1GeneralizedTime(_);

Non-UTC representation of time

If a time can be represented by UTCTime, UTCTime is used otherwise, ASN1_GENERALIZEDTIME is used. This would be, for example outside the year range of 1950-2049.

ASN1_GENERALIZEDTIME_set documentation from OpenSSL provides further details of implmentation. Note: these docs are from the master branch as documentation on the 1.1.0 branch did not include this page.

Trait Implementations

impl AsRef<Asn1GeneralizedTimeRef> for Asn1GeneralizedTime

impl Borrow<Asn1GeneralizedTimeRef> for Asn1GeneralizedTime

impl Deref for Asn1GeneralizedTime

type Target = Asn1GeneralizedTimeRef

The resulting type after dereferencing.

impl DerefMut for Asn1GeneralizedTime

impl Drop for Asn1GeneralizedTime

impl ForeignType for Asn1GeneralizedTime

type CType = ASN1_GENERALIZEDTIME

The raw C type.

type Ref = Asn1GeneralizedTimeRef

The type representing a reference to this type.

impl Send for Asn1GeneralizedTime[src]

impl Sync for Asn1GeneralizedTime[src]

Auto Trait Implementations

impl RefUnwindSafe for Asn1GeneralizedTime

impl Unpin for Asn1GeneralizedTime

impl UnwindSafe for Asn1GeneralizedTime

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, 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.