pub struct TimestampStructure {
pub value: f64,
}Expand description
A data type that contains a Timestamp object. This is specified using the ISO 8601 format. For example, 2020-06-01T13:15:02.001Z represents 1 millisecond past June 1, 2020 1:15:02 PM UTC.
Fields§
§value: f64 A Timestamp. This is specified using the ISO 8601 format. For example, 2020-06-01T13:15:02.001Z represents 1 millisecond past June 1, 2020 1:15:02 PM UTC.
Trait Implementations§
Source§impl Clone for TimestampStructure
impl Clone for TimestampStructure
Source§fn clone(&self) -> TimestampStructure
fn clone(&self) -> TimestampStructure
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 TimestampStructure
impl Debug for TimestampStructure
Source§impl Default for TimestampStructure
impl Default for TimestampStructure
Source§fn default() -> TimestampStructure
fn default() -> TimestampStructure
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TimestampStructure
impl<'de> Deserialize<'de> for TimestampStructure
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 PartialEq for TimestampStructure
impl PartialEq for TimestampStructure
impl StructuralPartialEq for TimestampStructure
Auto Trait Implementations§
impl Freeze for TimestampStructure
impl RefUnwindSafe for TimestampStructure
impl Send for TimestampStructure
impl Sync for TimestampStructure
impl Unpin for TimestampStructure
impl UnwindSafe for TimestampStructure
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