pub struct ServerTime {
pub server_time: i64,
pub datetime: String,
}Expand description
Server time information.
Fields§
§server_time: i64Server timestamp in milliseconds.
datetime: StringDatetime string.
Implementations§
Source§impl ServerTime
impl ServerTime
Sourcepub fn new(server_time: i64) -> ServerTime
pub fn new(server_time: i64) -> ServerTime
Creates a new server time instance.
Sourcepub fn offset_from_local(&self) -> i64
pub fn offset_from_local(&self) -> i64
Calculates the offset from local time in milliseconds.
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<ServerTime, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ServerTime, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for ServerTime
impl Serialize for ServerTime
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. 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 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