pub struct ServerTime {
pub time_second: u64,
pub time_nano: u64,
}Fields§
§time_second: u64Bybit server timestamp (sec)
time_nano: u64Bybit server timestamp (nano)
Trait Implementations§
Source§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
Source§impl PartialEq for ServerTime
impl PartialEq for ServerTime
Source§fn eq(&self, other: &ServerTime) -> bool
fn eq(&self, other: &ServerTime) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ServerTime
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