pub struct GeomField {
pub name: String,
pub kind: GeometryType,
pub has_z: bool,
pub has_m: bool,
pub extent: Option<[f64; 6]>,
}Expand description
Per-layer geometry column metadata.
Fields§
§name: String§kind: GeometryType§has_z: bool§has_m: bool§extent: Option<[f64; 6]>xmin, ymin, zmin, xmax, ymax, zmax — None if not declared by the source.
Implementations§
Trait Implementations§
impl StructuralPartialEq for GeomField
Auto Trait Implementations§
impl Freeze for GeomField
impl RefUnwindSafe for GeomField
impl Send for GeomField
impl Sync for GeomField
impl Unpin for GeomField
impl UnsafeUnpin for GeomField
impl UnwindSafe for GeomField
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