pub enum Monotonic {
Rising {
strict: bool,
},
Falling {
strict: bool,
},
NotMonotonic,
}
Expand description
Describes the monotonic property of a vector
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Monotonic
impl RefUnwindSafe for Monotonic
impl Send for Monotonic
impl Sync for Monotonic
impl Unpin for Monotonic
impl UnwindSafe for Monotonic
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