pub struct IncrementalMinMax { /* private fields */ }Expand description
Incremental min/max tracker using BTreeMap for O(log n) operations
Implementations§
Trait Implementations§
Source§impl Clone for IncrementalMinMax
impl Clone for IncrementalMinMax
Source§fn clone(&self) -> IncrementalMinMax
fn clone(&self) -> IncrementalMinMax
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 IncrementalMinMax
impl Debug for IncrementalMinMax
Auto Trait Implementations§
impl Freeze for IncrementalMinMax
impl RefUnwindSafe for IncrementalMinMax
impl Send for IncrementalMinMax
impl Sync for IncrementalMinMax
impl Unpin for IncrementalMinMax
impl UnsafeUnpin for IncrementalMinMax
impl UnwindSafe for IncrementalMinMax
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