pub enum DiagCategory {
Frame,
Diff,
Layout,
Paint,
Raster,
Input,
Semantics,
Animation,
Media,
Invariants,
Test,
}Expand description
Pipeline subsystem that a diagnostic event belongs to.
Used for category-based filtering. Enable specific categories via the
FISSION_DIAG environment variable (comma-separated, or * for all).
Variants§
Trait Implementations§
Source§impl Clone for DiagCategory
impl Clone for DiagCategory
Source§fn clone(&self) -> DiagCategory
fn clone(&self) -> DiagCategory
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 DiagCategory
Source§impl Debug for DiagCategory
impl Debug for DiagCategory
Source§impl<'de> Deserialize<'de> for DiagCategory
impl<'de> Deserialize<'de> for DiagCategory
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for DiagCategory
Source§impl Hash for DiagCategory
impl Hash for DiagCategory
Source§impl Ord for DiagCategory
impl Ord for DiagCategory
Source§fn cmp(&self, other: &DiagCategory) -> Ordering
fn cmp(&self, other: &DiagCategory) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for DiagCategory
impl PartialEq for DiagCategory
Source§fn eq(&self, other: &DiagCategory) -> bool
fn eq(&self, other: &DiagCategory) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for DiagCategory
impl PartialOrd for DiagCategory
Source§impl Serialize for DiagCategory
impl Serialize for DiagCategory
impl StructuralPartialEq for DiagCategory
Auto Trait Implementations§
impl Freeze for DiagCategory
impl RefUnwindSafe for DiagCategory
impl Send for DiagCategory
impl Sync for DiagCategory
impl Unpin for DiagCategory
impl UnsafeUnpin for DiagCategory
impl UnwindSafe for DiagCategory
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