Home
last modified time | relevance | path

Searched refs:InterestKind (Results 1 – 1 of 1) sorted by relevance

/third_party/rust/crates/tracing/tracing-core/src/
Dsubscriber.rs592 pub struct Interest(InterestKind);
595 enum InterestKind { enum
609 Interest(InterestKind::Never) in never()
621 Interest(InterestKind::Sometimes) in sometimes()
631 Interest(InterestKind::Always) in always()
638 matches!(self.0, InterestKind::Never) in is_never()
645 matches!(self.0, InterestKind::Sometimes) in is_sometimes()
652 matches!(self.0, InterestKind::Always) in is_always()