pub enum CoverageDatatype {
Integer,
Float,
}Expand description
The data type stored in each tile of a gridded coverage.
Corresponds to the datatype column of gpkg_2d_gridded_coverage_ancillary.
Variants§
Integer
16-bit (or wider) integer samples — typical for elevation data.
Float
32-bit IEEE-754 float samples.
Implementations§
Trait Implementations§
Source§impl Clone for CoverageDatatype
impl Clone for CoverageDatatype
Source§fn clone(&self) -> CoverageDatatype
fn clone(&self) -> CoverageDatatype
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CoverageDatatype
impl Debug for CoverageDatatype
Source§impl FromStr for CoverageDatatype
impl FromStr for CoverageDatatype
Source§impl PartialEq for CoverageDatatype
impl PartialEq for CoverageDatatype
Source§fn eq(&self, other: &CoverageDatatype) -> bool
fn eq(&self, other: &CoverageDatatype) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CoverageDatatype
Auto Trait Implementations§
impl Freeze for CoverageDatatype
impl RefUnwindSafe for CoverageDatatype
impl Send for CoverageDatatype
impl Sync for CoverageDatatype
impl Unpin for CoverageDatatype
impl UnsafeUnpin for CoverageDatatype
impl UnwindSafe for CoverageDatatype
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