#[repr(C)]pub struct LonLatBuf {
pub data: Vec<(f64, f64)>,
pub ellipsoid: Ellipsoid,
}
Expand description
A special version of a CoordinateBuf
Every CRS that implements the Crs
trait can project in and out of a LonLatBuf
Fields§
§data: Vec<(f64, f64)>
The actual coordinates in (lon, lat) format
ellipsoid: Ellipsoid
The ellipsoid used for the coordinates
Auto Trait Implementations§
impl Freeze for LonLatBuf
impl RefUnwindSafe for LonLatBuf
impl Send for LonLatBuf
impl Sync for LonLatBuf
impl Unpin for LonLatBuf
impl UnwindSafe for LonLatBuf
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