pub struct GeomData { /* private fields */ }Expand description
Validated geometry data for Features.
Use GeomEncoder to encode.
§Example
let geom_data = GeomEncoder::new(GeomType::Point)
.point(0.0, 0.0)?
.point(10.0, 0.0)?
.encode()?;Implementations§
Auto Trait Implementations§
impl Freeze for GeomData
impl RefUnwindSafe for GeomData
impl Send for GeomData
impl Sync for GeomData
impl Unpin for GeomData
impl UnsafeUnpin for GeomData
impl UnwindSafe for GeomData
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