pub struct CoverageInfo {Show 13 fields
pub coverage_id: String,
pub title: String,
pub abstract_text: Option<String>,
pub native_crs: String,
pub bbox: (f64, f64, f64, f64),
pub grid_size: (usize, usize),
pub grid_origin: (f64, f64),
pub grid_resolution: (f64, f64),
pub band_count: usize,
pub band_names: Vec<String>,
pub data_type: String,
pub source: CoverageSource,
pub formats: Vec<String>,
}Expand description
Coverage information
Fields§
§coverage_id: StringCoverage identifier
title: StringTitle
abstract_text: Option<String>Abstract
native_crs: StringNative CRS
bbox: (f64, f64, f64, f64)Bounding box in native CRS (minx, miny, maxx, maxy)
grid_size: (usize, usize)Grid dimensions (width, height)
grid_origin: (f64, f64)Grid origin (x, y)
grid_resolution: (f64, f64)Grid resolution (x, y)
band_count: usizeNumber of bands
band_names: Vec<String>Band names
data_type: StringData type
source: CoverageSourceCoverage source
formats: Vec<String>Supported formats
Trait Implementations§
Source§impl Clone for CoverageInfo
impl Clone for CoverageInfo
Source§fn clone(&self) -> CoverageInfo
fn clone(&self) -> CoverageInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for CoverageInfo
impl RefUnwindSafe for CoverageInfo
impl Send for CoverageInfo
impl Sync for CoverageInfo
impl Unpin for CoverageInfo
impl UnsafeUnpin for CoverageInfo
impl UnwindSafe for CoverageInfo
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more