pub struct RuleData<'a> {
pub rule: &'a Rule<'a>,
pub priority: u16,
pub rule_set: &'a RuleSet<'a>,
}
Expand description
Holds a rule and its priority, along with the rule set it came from.
Fields§
§rule: &'a Rule<'a>
§priority: u16
§rule_set: &'a RuleSet<'a>
Trait Implementations§
Source§impl Ord for RuleData<'_>
impl Ord for RuleData<'_>
Source§impl PartialOrd for RuleData<'_>
impl PartialOrd for RuleData<'_>
impl Eq for RuleData<'_>
Auto Trait Implementations§
impl<'a> Freeze for RuleData<'a>
impl<'a> RefUnwindSafe for RuleData<'a>
impl<'a> Send for RuleData<'a>
impl<'a> Sync for RuleData<'a>
impl<'a> Unpin for RuleData<'a>
impl<'a> UnwindSafe for RuleData<'a>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more