pub struct UtcTime(_);
Expand description
ASN.1 UTCTime
type.
This type implements the validity requirements specified in RFC 5280 Section 4.1.2.5.1, namely:
For the purposes of this profile, UTCTime values MUST be expressed in Greenwich Mean Time (Zulu) and MUST include seconds (i.e., times are
YYMMDDHHMMSSZ
), even where the number of seconds is zero. Conforming systems MUST interpret the year field (YY
) as follows:
- Where
YY
is greater than or equal to 50, the year SHALL be interpreted as19YY
; and- Where
YY
is less than 50, the year SHALL be interpreted as20YY
.
Implementations§
source§impl UtcTime
impl UtcTime
sourcepub fn to_date_time(&self) -> DateTime
pub fn to_date_time(&self) -> DateTime
sourcepub fn from_unix_duration(unix_duration: Duration) -> Result<Self>
pub fn from_unix_duration(unix_duration: Duration) -> Result<Self>
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<'a> DecodeValue<'a> for UtcTime
impl<'a> DecodeValue<'a> for UtcTime
source§impl EncodeValue for UtcTime
impl EncodeValue for UtcTime
source§impl From<UtcTime> for SystemTime
impl From<UtcTime> for SystemTime
source§fn from(utc_time: UtcTime) -> SystemTime
fn from(utc_time: UtcTime) -> SystemTime
Converts to this type from the input type.
source§impl Ord for UtcTime
impl Ord for UtcTime
source§impl PartialEq<UtcTime> for UtcTime
impl PartialEq<UtcTime> for UtcTime
source§impl PartialOrd<UtcTime> for UtcTime
impl PartialOrd<UtcTime> for UtcTime
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for UtcTime
impl Eq for UtcTime
impl StructuralEq for UtcTime
impl StructuralPartialEq for UtcTime
Auto Trait Implementations§
impl RefUnwindSafe for UtcTime
impl Send for UtcTime
impl Sync for UtcTime
impl Unpin for UtcTime
impl UnwindSafe for UtcTime
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
Mutably borrows from an owned value. Read more
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 dyn Writer) -> Result<(), Error>
fn encode(&self, writer: &mut dyn Writer) -> Result<(), Error>
Encode this value as ASN.1 DER using the provided Writer
.
source§fn encode_to_slice<'a>(&self, buf: &'a mut [u8]) -> Result<&'a [u8]>
fn encode_to_slice<'a>(&self, buf: &'a mut [u8]) -> Result<&'a [u8]>
Encode this value to the provided byte slice, returning a sub-slice
containing the encoded message.