pub struct GeneralizedTime(DateTime);Expand description
ASN.1 GeneralizedTime type.
This type implements the validity requirements specified in RFC 5280 Section 4.1.2.5.2, namely:
For the purposes of this profile, GeneralizedTime values MUST be expressed in Greenwich Mean Time (Zulu) and MUST include seconds (i.e., times are
YYYYMMDDHHMMSSZ), even where the number of seconds is zero. GeneralizedTime values MUST NOT include fractional seconds.
Tuple Fields§
§0: DateTimeImplementations§
Source§impl GeneralizedTime
 
impl GeneralizedTime
Sourceconst LENGTH: usize = 15usize
 
const LENGTH: usize = 15usize
Length of an RFC 5280-flavored ASN.1 DER-encoded GeneralizedTime.
Sourcepub const fn from_date_time(datetime: DateTime) -> Self
 
pub const fn from_date_time(datetime: DateTime) -> Self
Create a GeneralizedTime from a DateTime.
Sourcepub fn to_date_time(&self) -> DateTime
 
pub fn to_date_time(&self) -> DateTime
Convert this GeneralizedTime into a DateTime.
Sourcepub fn from_unix_duration(unix_duration: Duration) -> Result<Self>
 
pub fn from_unix_duration(unix_duration: Duration) -> Result<Self>
Create a new GeneralizedTime given a Duration since UNIX_EPOCH
(a.k.a. “Unix time”)
Sourcepub fn to_unix_duration(&self) -> Duration
 
pub fn to_unix_duration(&self) -> Duration
Get the duration of this timestamp since UNIX_EPOCH.
Sourcepub fn from_system_time(time: SystemTime) -> Result<Self>
 
pub fn from_system_time(time: SystemTime) -> Result<Self>
Instantiate from SystemTime.
Sourcepub fn to_system_time(&self) -> SystemTime
 
pub fn to_system_time(&self) -> SystemTime
Convert to SystemTime.
Trait Implementations§
Source§impl Clone for GeneralizedTime
 
impl Clone for GeneralizedTime
Source§fn clone(&self) -> GeneralizedTime
 
fn clone(&self) -> GeneralizedTime
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for GeneralizedTime
 
impl Debug for GeneralizedTime
Source§impl<'a> DecodeValue<'a> for GeneralizedTime
 
impl<'a> DecodeValue<'a> for GeneralizedTime
Source§impl EncodeValue for GeneralizedTime
 
impl EncodeValue for GeneralizedTime
Source§impl From<&DateTime> for GeneralizedTime
 
impl From<&DateTime> for GeneralizedTime
Source§impl From<&GeneralizedTime> for DateTime
 
impl From<&GeneralizedTime> for DateTime
Source§fn from(utc_time: &GeneralizedTime) -> DateTime
 
fn from(utc_time: &GeneralizedTime) -> DateTime
Source§impl From<&GeneralizedTime> for GeneralizedTime
 
impl From<&GeneralizedTime> for GeneralizedTime
Source§fn from(value: &GeneralizedTime) -> GeneralizedTime
 
fn from(value: &GeneralizedTime) -> GeneralizedTime
Source§impl From<&GeneralizedTime> for SystemTime
 
impl From<&GeneralizedTime> for SystemTime
Source§fn from(time: &GeneralizedTime) -> SystemTime
 
fn from(time: &GeneralizedTime) -> SystemTime
Source§impl From<DateTime> for GeneralizedTime
 
impl From<DateTime> for GeneralizedTime
Source§impl From<GeneralizedTime> for DateTime
 
impl From<GeneralizedTime> for DateTime
Source§fn from(utc_time: GeneralizedTime) -> DateTime
 
fn from(utc_time: GeneralizedTime) -> DateTime
Source§impl From<GeneralizedTime> for SystemTime
 
impl From<GeneralizedTime> for SystemTime
Source§fn from(time: GeneralizedTime) -> SystemTime
 
fn from(time: GeneralizedTime) -> SystemTime
Source§impl Ord for GeneralizedTime
 
impl Ord for GeneralizedTime
Source§fn cmp(&self, other: &GeneralizedTime) -> Ordering
 
fn cmp(&self, other: &GeneralizedTime) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
    Self: Sized,
 
fn max(self, other: Self) -> Selfwhere
    Self: Sized,
Source§impl PartialEq for GeneralizedTime
 
impl PartialEq for GeneralizedTime
Source§impl PartialOrd for GeneralizedTime
 
impl PartialOrd for GeneralizedTime
Source§impl<'__der> TryFrom<&'__der Any> for GeneralizedTime
 
impl<'__der> TryFrom<&'__der Any> for GeneralizedTime
Source§impl TryFrom<&SystemTime> for GeneralizedTime
 
impl TryFrom<&SystemTime> for GeneralizedTime
Source§fn try_from(time: &SystemTime) -> Result<GeneralizedTime>
 
fn try_from(time: &SystemTime) -> Result<GeneralizedTime>
Source§impl<'__der> TryFrom<AnyRef<'__der>> for GeneralizedTime
 
impl<'__der> TryFrom<AnyRef<'__der>> for GeneralizedTime
Source§impl TryFrom<SystemTime> for GeneralizedTime
 
impl TryFrom<SystemTime> for GeneralizedTime
Source§fn try_from(time: SystemTime) -> Result<GeneralizedTime>
 
fn try_from(time: SystemTime) -> Result<GeneralizedTime>
impl Copy for GeneralizedTime
impl Eq for GeneralizedTime
impl OrdIsValueOrd for GeneralizedTime
impl StructuralPartialEq for GeneralizedTime
Auto Trait Implementations§
impl Freeze for GeneralizedTime
impl RefUnwindSafe for GeneralizedTime
impl Send for GeneralizedTime
impl Sync for GeneralizedTime
impl Unpin for GeneralizedTime
impl UnwindSafe for GeneralizedTime
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
Source§impl<'a, T> Decode<'a> for Twhere
    T: DecodeValue<'a> + FixedTag,
 
impl<'a, T> Decode<'a> for Twhere
    T: DecodeValue<'a> + FixedTag,
Source§impl<T> Encode for Twhere
    T: EncodeValue + Tagged,
 
impl<T> Encode for Twhere
    T: EncodeValue + Tagged,
Source§fn encoded_len(&self) -> Result<Length, Error>
 
fn encoded_len(&self) -> Result<Length, Error>
Compute the length of this value in bytes when encoded as ASN.1 DER.
Source§fn encode(&self, writer: &mut impl Writer) -> Result<(), Error>
 
fn encode(&self, writer: &mut impl Writer) -> Result<(), Error>
Encode this value as ASN.1 DER using the provided Writer.