pub struct ClimateRemovalsLocation {
pub city: Option<String>,
pub country: String,
pub latitude: Option<f64>,
pub longitude: Option<f64>,
pub region: Option<String>,
}
Fields§
§city: Option<String>
The city where the supplier is located.
country: String
Two-letter ISO code representing the country where the supplier is located.
latitude: Option<f64>
The geographic latitude where the supplier is located.
longitude: Option<f64>
The geographic longitude where the supplier is located.
region: Option<String>
The state/county/province/region where the supplier is located.
Trait Implementations§
Source§impl Clone for ClimateRemovalsLocation
impl Clone for ClimateRemovalsLocation
Source§fn clone(&self) -> ClimateRemovalsLocation
fn clone(&self) -> ClimateRemovalsLocation
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 ClimateRemovalsLocation
impl Debug for ClimateRemovalsLocation
Source§impl FromValueOpt for ClimateRemovalsLocation
impl FromValueOpt for ClimateRemovalsLocation
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for ClimateRemovalsLocation
impl RefUnwindSafe for ClimateRemovalsLocation
impl Send for ClimateRemovalsLocation
impl Sync for ClimateRemovalsLocation
impl Unpin for ClimateRemovalsLocation
impl UnwindSafe for ClimateRemovalsLocation
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