pub struct NumericDate(pub i64);
Expand description
The number of seconds from 1970-01-01T00:00:00Z UTC until the specified UTC date/time ignoring leap seconds. (https://www.rfc-editor.org/rfc/rfc7519#section-2)
Tuple Fields§
§0: i64
Trait Implementations§
Source§impl Clone for NumericDate
impl Clone for NumericDate
Source§fn clone(&self) -> NumericDate
fn clone(&self) -> NumericDate
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for NumericDate
impl Debug for NumericDate
Source§impl<'de> Deserialize<'de> for NumericDate
impl<'de> Deserialize<'de> for NumericDate
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<NumericDate> for DateTime<Utc>
impl From<NumericDate> for DateTime<Utc>
Source§fn from(t: NumericDate) -> Self
fn from(t: NumericDate) -> Self
Converts to this type from the input type.
Source§impl From<NumericDate> for i64
accesses the underlying value
impl From<NumericDate> for i64
accesses the underlying value
Source§fn from(t: NumericDate) -> Self
fn from(t: NumericDate) -> Self
Converts to this type from the input type.
Source§impl PartialEq for NumericDate
impl PartialEq for NumericDate
Source§impl Serialize for NumericDate
impl Serialize for NumericDate
impl Eq for NumericDate
impl StructuralPartialEq for NumericDate
Auto Trait Implementations§
impl Freeze for NumericDate
impl RefUnwindSafe for NumericDate
impl Send for NumericDate
impl Sync for NumericDate
impl Unpin for NumericDate
impl UnwindSafe for NumericDate
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