pub struct GeoServiceRegion {
pub latitude1: i8,
pub latitude2: i8,
pub longitude1: i16,
pub longitude2: i16,
pub region_shape: u8,
}Expand description
One service region in GEOServiceLevel.
Fields§
§latitude1: i8Latitude 1 (degrees)
latitude2: i8Latitude 2 (degrees)
longitude1: i16Longitude 1 (degrees)
longitude2: i16Longitude 2 (degrees)
region_shape: u8Region shape code
Trait Implementations§
Source§impl Clone for GeoServiceRegion
impl Clone for GeoServiceRegion
Source§fn clone(&self) -> GeoServiceRegion
fn clone(&self) -> GeoServiceRegion
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 moreAuto Trait Implementations§
impl Freeze for GeoServiceRegion
impl RefUnwindSafe for GeoServiceRegion
impl Send for GeoServiceRegion
impl Sync for GeoServiceRegion
impl Unpin for GeoServiceRegion
impl UnsafeUnpin for GeoServiceRegion
impl UnwindSafe for GeoServiceRegion
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