pub struct GPSBoundInfo {
pub latitude: [f32; 2],
pub longitude: [f32; 2],
}Expand description
GPSBoundInfo is a struct that contains two arrays of two floats each, one for latitude and one for
longitude.
Properties:
latitude: [f32;2] - The latitude of the bounding box. The first value is the minimum latitude, the second value is the maximum latitude.longitude: The longitude of the location.
Fields§
§latitude: [f32; 2]§longitude: [f32; 2]Auto Trait Implementations§
impl Freeze for GPSBoundInfo
impl RefUnwindSafe for GPSBoundInfo
impl Send for GPSBoundInfo
impl Sync for GPSBoundInfo
impl Unpin for GPSBoundInfo
impl UnwindSafe for GPSBoundInfo
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