pub struct ZonalStatistics {
pub zone_id: i32,
pub count: u64,
pub sum: f64,
pub mean: f64,
pub min: f64,
pub max: f64,
pub std_dev: f64,
}Expand description
Statistics for a single zone
Fields§
§zone_id: i32Zone ID
count: u64Count of valid pixels
sum: f64Sum of values
mean: f64Mean value
min: f64Minimum value
max: f64Maximum value
std_dev: f64Standard deviation
Trait Implementations§
Source§impl Clone for ZonalStatistics
impl Clone for ZonalStatistics
Source§fn clone(&self) -> ZonalStatistics
fn clone(&self) -> ZonalStatistics
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 moreSource§impl Debug for ZonalStatistics
impl Debug for ZonalStatistics
Source§impl Default for ZonalStatistics
impl Default for ZonalStatistics
Source§fn default() -> ZonalStatistics
fn default() -> ZonalStatistics
Returns the “default value” for a type. Read more
impl Copy for ZonalStatistics
Auto Trait Implementations§
impl Freeze for ZonalStatistics
impl RefUnwindSafe for ZonalStatistics
impl Send for ZonalStatistics
impl Sync for ZonalStatistics
impl Unpin for ZonalStatistics
impl UnsafeUnpin for ZonalStatistics
impl UnwindSafe for ZonalStatistics
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