pub struct GeneralizedTime(/* private fields */);
pkcs8
only.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.
Implementations§
Source§impl GeneralizedTime
impl GeneralizedTime
Sourcepub const fn from_date_time(datetime: DateTime) -> GeneralizedTime
pub const fn from_date_time(datetime: DateTime) -> GeneralizedTime
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<GeneralizedTime, Error>
pub fn from_unix_duration( unix_duration: Duration, ) -> Result<GeneralizedTime, Error>
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<GeneralizedTime, Error>
Available on crate feature std
only.
pub fn from_system_time(time: SystemTime) -> Result<GeneralizedTime, Error>
std
only.Instantiate from SystemTime
.
Sourcepub fn to_system_time(&self) -> SystemTime
Available on crate feature std
only.
pub fn to_system_time(&self) -> SystemTime
std
only.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§fn decode_value<R>(
reader: &mut R,
header: Header,
) -> Result<GeneralizedTime, Error>where
R: Reader<'a>,
fn decode_value<R>(
reader: &mut R,
header: Header,
) -> Result<GeneralizedTime, Error>where
R: Reader<'a>,
Reader
.Source§impl EncodeValue for GeneralizedTime
impl EncodeValue for GeneralizedTime
Source§impl From<&DateTime> for GeneralizedTime
impl From<&DateTime> for GeneralizedTime
Source§fn from(datetime: &DateTime) -> GeneralizedTime
fn from(datetime: &DateTime) -> 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<DateTime> for GeneralizedTime
impl From<DateTime> for GeneralizedTime
Source§fn from(datetime: DateTime) -> GeneralizedTime
fn from(datetime: DateTime) -> 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 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
Available on crate feature alloc
only.
impl<'__der> TryFrom<&'__der Any> for GeneralizedTime
alloc
only.Source§impl TryFrom<&SystemTime> for GeneralizedTime
Available on crate feature std
only.
impl TryFrom<&SystemTime> for GeneralizedTime
std
only.Source§impl<'__der> TryFrom<AnyRef<'__der>> for GeneralizedTime
impl<'__der> TryFrom<AnyRef<'__der>> for GeneralizedTime
Source§impl TryFrom<SystemTime> for GeneralizedTime
Available on crate feature std
only.
impl TryFrom<SystemTime> for GeneralizedTime
std
only.impl Copy for GeneralizedTime
impl Eq 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
.