#[non_exhaustive]pub enum MfRangeDirection {
Ascending,
Descending,
}Expand description
Direction of a two-sided <mf-range>: Ascending is the <mf-lt>
family (lower < name < upper), Descending is the <mf-gt>
family (lower > name > upper).
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Ascending
The <mf-lt> family (lower < name < upper, or <=).
Descending
The <mf-gt> family (lower > name > upper, or >=).
Trait Implementations§
Source§impl Clone for MfRangeDirection
impl Clone for MfRangeDirection
Source§fn clone(&self) -> MfRangeDirection
fn clone(&self) -> MfRangeDirection
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 moreimpl Copy for MfRangeDirection
Source§impl Debug for MfRangeDirection
impl Debug for MfRangeDirection
impl Eq for MfRangeDirection
Source§impl PartialEq for MfRangeDirection
impl PartialEq for MfRangeDirection
impl StructuralPartialEq for MfRangeDirection
Auto Trait Implementations§
impl Freeze for MfRangeDirection
impl RefUnwindSafe for MfRangeDirection
impl Send for MfRangeDirection
impl Sync for MfRangeDirection
impl Unpin for MfRangeDirection
impl UnsafeUnpin for MfRangeDirection
impl UnwindSafe for MfRangeDirection
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