[][src]Enum lumberjack::util::LabelSet

pub enum LabelSet {
    Positive(HashSet<String>),
    Negative(HashSet<String>),
}

LabelSet.

Variants

Positive(HashSet<String>)

Variant used for positive matching.

Negative(HashSet<String>)

Variant used for negative matching.

Methods

impl LabelSet[src]

pub fn matches(&self, q: impl Borrow<str>) -> bool[src]

Returns whether the query matched the LabelSet.

If self is LabelSet::Positive, true is returned if the query was found, false otherwise. If self is LabelSet::Negative, true is returned if the query was not foud.

Trait Implementations

impl Clone for LabelSet[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for LabelSet

impl Sync for LabelSet

Blanket Implementations

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]