pub struct CityCountryGuess {
pub city: String,
pub country: String,
pub latitude: f64,
pub longitude: f64,
pub timezone: Option<String>,
}Fields§
§city: String§country: String§latitude: f64§longitude: f64§timezone: Option<String>Trait Implementations§
Source§impl Clone for CityCountryGuess
impl Clone for CityCountryGuess
Source§fn clone(&self) -> CityCountryGuess
fn clone(&self) -> CityCountryGuess
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 CityCountryGuess
impl Debug for CityCountryGuess
Source§impl<'de> Deserialize<'de> for CityCountryGuess
impl<'de> Deserialize<'de> for CityCountryGuess
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 CityCountryGuess
impl RefUnwindSafe for CityCountryGuess
impl Send for CityCountryGuess
impl Sync for CityCountryGuess
impl Unpin for CityCountryGuess
impl UnsafeUnpin for CityCountryGuess
impl UnwindSafe for CityCountryGuess
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