#[non_exhaustive]pub enum ProfileMode {
Off,
Phases,
Timings,
}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 Clone for ProfileMode
impl Clone for ProfileMode
Source§fn clone(&self) -> ProfileMode
fn clone(&self) -> ProfileMode
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 ProfileMode
impl Debug for ProfileMode
Source§impl PartialEq for ProfileMode
impl PartialEq for ProfileMode
Source§impl Serialize for ProfileMode
impl Serialize for ProfileMode
impl Eq for ProfileMode
impl StructuralPartialEq for ProfileMode
Auto Trait Implementations§
impl Freeze for ProfileMode
impl RefUnwindSafe for ProfileMode
impl Send for ProfileMode
impl Sync for ProfileMode
impl Unpin for ProfileMode
impl UnsafeUnpin for ProfileMode
impl UnwindSafe for ProfileMode
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