pub struct ConvertTimeResponse {
pub utc: Utc,
pub locations: Vec<Location>,
}
Expand description
Time API responses. ConvertTime API response.
Fields§
§utc: Utc
UTC time stamp of requested time.
locations: Vec<Location>
List of returned locations.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ConvertTimeResponse
impl<'de> Deserialize<'de> for ConvertTimeResponse
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 ConvertTimeResponse
impl RefUnwindSafe for ConvertTimeResponse
impl Send for ConvertTimeResponse
impl Sync for ConvertTimeResponse
impl Unpin for ConvertTimeResponse
impl UnwindSafe for ConvertTimeResponse
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