#[non_exhaustive]pub enum RefineMode {
AOS,
LOS,
}
Expand description
Refinement mode, AOS or LOS
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.
Trait Implementations§
Source§impl Debug for RefineMode
impl Debug for RefineMode
Source§impl PartialEq for RefineMode
impl PartialEq for RefineMode
impl StructuralPartialEq for RefineMode
Auto Trait Implementations§
impl Freeze for RefineMode
impl RefUnwindSafe for RefineMode
impl Send for RefineMode
impl Sync for RefineMode
impl Unpin for RefineMode
impl UnwindSafe for RefineMode
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