pub struct ServerTime {
pub time_second: String,
pub time_nano: String,
}Expand description
Server time response.
Fields§
§time_second: StringServer time in seconds
time_nano: StringServer time in nanoseconds
Trait Implementations§
Source§impl Clone for ServerTime
impl Clone for ServerTime
Source§fn clone(&self) -> ServerTime
fn clone(&self) -> ServerTime
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 ServerTime
impl Debug for ServerTime
Source§impl<'de> Deserialize<'de> for ServerTime
impl<'de> Deserialize<'de> for ServerTime
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
Auto Trait Implementations§
impl Freeze for ServerTime
impl RefUnwindSafe for ServerTime
impl Send for ServerTime
impl Sync for ServerTime
impl Unpin for ServerTime
impl UnsafeUnpin for ServerTime
impl UnwindSafe for ServerTime
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