pub struct NodesTimeTimeResponseData {
pub localtime: i64,
pub time: i64,
pub timezone: String,
}Fields§
§localtime: i64Seconds since 1970-01-01 00:00:00 (local time)
time: i64Seconds since 1970-01-01 00:00:00 UTC.
timezone: StringTime zone
Implementations§
Trait Implementations§
Source§impl Clone for NodesTimeTimeResponseData
impl Clone for NodesTimeTimeResponseData
Source§fn clone(&self) -> NodesTimeTimeResponseData
fn clone(&self) -> NodesTimeTimeResponseData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 NodesTimeTimeResponseData
impl Debug for NodesTimeTimeResponseData
Source§impl Default for NodesTimeTimeResponseData
impl Default for NodesTimeTimeResponseData
Source§fn default() -> NodesTimeTimeResponseData
fn default() -> NodesTimeTimeResponseData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NodesTimeTimeResponseData
impl<'de> Deserialize<'de> for NodesTimeTimeResponseData
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 NodesTimeTimeResponseData
impl PartialEq for NodesTimeTimeResponseData
Source§fn eq(&self, other: &NodesTimeTimeResponseData) -> bool
fn eq(&self, other: &NodesTimeTimeResponseData) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for NodesTimeTimeResponseData
Auto Trait Implementations§
impl Freeze for NodesTimeTimeResponseData
impl RefUnwindSafe for NodesTimeTimeResponseData
impl Send for NodesTimeTimeResponseData
impl Sync for NodesTimeTimeResponseData
impl Unpin for NodesTimeTimeResponseData
impl UnsafeUnpin for NodesTimeTimeResponseData
impl UnwindSafe for NodesTimeTimeResponseData
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