pub struct HistogramParams {
pub width: u32,
pub height: u32,
pub bin_count: u32,
pub min_value: f32,
pub max_value: f32,
}Expand description
Parameters for histogram equalization.
Fields§
§width: u32§height: u32§bin_count: u32§min_value: f32§max_value: f32Trait Implementations§
Source§impl Clone for HistogramParams
impl Clone for HistogramParams
Source§fn clone(&self) -> HistogramParams
fn clone(&self) -> HistogramParams
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 HistogramParams
impl Debug for HistogramParams
Source§impl Default for HistogramParams
impl Default for HistogramParams
impl Copy for HistogramParams
Auto Trait Implementations§
impl Freeze for HistogramParams
impl RefUnwindSafe for HistogramParams
impl Send for HistogramParams
impl Sync for HistogramParams
impl Unpin for HistogramParams
impl UnsafeUnpin for HistogramParams
impl UnwindSafe for HistogramParams
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