pub struct UnixMilliseconds(/* private fields */);Trait Implementations§
Source§impl Clone for UnixMilliseconds
impl Clone for UnixMilliseconds
Source§fn clone(&self) -> UnixMilliseconds
fn clone(&self) -> UnixMilliseconds
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 UnixMilliseconds
impl Debug for UnixMilliseconds
Source§impl Default for UnixMilliseconds
impl Default for UnixMilliseconds
Source§fn default() -> UnixMilliseconds
fn default() -> UnixMilliseconds
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UnixMilliseconds
impl<'de> Deserialize<'de> for UnixMilliseconds
Source§fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<UnixMilliseconds> for DateTime<Utc>
impl From<UnixMilliseconds> for DateTime<Utc>
Source§fn from(value: UnixMilliseconds) -> Self
fn from(value: UnixMilliseconds) -> Self
Converts to this type from the input type.
Source§impl Hash for UnixMilliseconds
impl Hash for UnixMilliseconds
Source§impl Ord for UnixMilliseconds
impl Ord for UnixMilliseconds
Source§fn cmp(&self, other: &UnixMilliseconds) -> Ordering
fn cmp(&self, other: &UnixMilliseconds) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for UnixMilliseconds
impl PartialEq for UnixMilliseconds
Source§impl PartialOrd for UnixMilliseconds
impl PartialOrd for UnixMilliseconds
Source§impl Serialize for UnixMilliseconds
impl Serialize for UnixMilliseconds
Source§impl TryFrom<i64> for UnixMilliseconds
impl TryFrom<i64> for UnixMilliseconds
impl Copy for UnixMilliseconds
impl Eq for UnixMilliseconds
impl StructuralPartialEq for UnixMilliseconds
Auto Trait Implementations§
impl Freeze for UnixMilliseconds
impl RefUnwindSafe for UnixMilliseconds
impl Send for UnixMilliseconds
impl Sync for UnixMilliseconds
impl Unpin for UnixMilliseconds
impl UnwindSafe for UnixMilliseconds
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more