pub struct IntensityStatistics {
pub mean: f64,
pub std: f64,
pub min: f64,
pub max: f64,
pub sum: f64,
pub saturated_pixels: usize,
pub zero_pixels: usize,
}Fields§
§mean: f64§std: f64§min: f64§max: f64§sum: f64§saturated_pixels: usize§zero_pixels: usizeTrait Implementations§
Source§impl Clone for IntensityStatistics
impl Clone for IntensityStatistics
Source§fn clone(&self) -> IntensityStatistics
fn clone(&self) -> IntensityStatistics
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 IntensityStatistics
impl Debug for IntensityStatistics
Source§impl<'de> Deserialize<'de> for IntensityStatistics
impl<'de> Deserialize<'de> for IntensityStatistics
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for IntensityStatistics
impl RefUnwindSafe for IntensityStatistics
impl Send for IntensityStatistics
impl Sync for IntensityStatistics
impl Unpin for IntensityStatistics
impl UnsafeUnpin for IntensityStatistics
impl UnwindSafe for IntensityStatistics
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