#[non_exhaustive]pub enum MfComparison {
Lt,
Le,
Gt,
Ge,
Eq,
}Expand description
<mf-comparison> = <mf-lt> | <mf-gt> | <mf-eq>, for the one-sided
<mf-range> forms (MfRange::NameFirst/MfRange::ValueFirst).
<mf-lt> = '<' '='?, <mf-gt> = '>' '='?, <mf-eq> = '='.
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.
Lt
< (strictly less than)
Le
<= (less than or equal to)
Gt
> (strictly greater than)
Ge
>= (greater than or equal to)
Eq
= (equal to)
Trait Implementations§
Source§impl Clone for MfComparison
impl Clone for MfComparison
Source§fn clone(&self) -> MfComparison
fn clone(&self) -> MfComparison
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 MfComparison
Source§impl Debug for MfComparison
impl Debug for MfComparison
impl Eq for MfComparison
Source§impl PartialEq for MfComparison
impl PartialEq for MfComparison
impl StructuralPartialEq for MfComparison
Auto Trait Implementations§
impl Freeze for MfComparison
impl RefUnwindSafe for MfComparison
impl Send for MfComparison
impl Sync for MfComparison
impl Unpin for MfComparison
impl UnsafeUnpin for MfComparison
impl UnwindSafe for MfComparison
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