pub enum MatchCond<K, V, R>{
Single(SingleCond<K, V, R>),
And(Vec<MatchCond<K, V, R>>),
Or(Vec<MatchCond<K, V, R>>),
Not(Box<MatchCond<K, V, R>>),
}
Expand description
A MatchCond
represents a matching condition
It can be a single condition or a combination of the logical operators And
, Or
and Not
Variants§
Single(SingleCond<K, V, R>)
And(Vec<MatchCond<K, V, R>>)
Or(Vec<MatchCond<K, V, R>>)
Not(Box<MatchCond<K, V, R>>)
Implementations§
Source§impl<K, V, R> MatchCond<K, V, R>
impl<K, V, R> MatchCond<K, V, R>
pub fn new() -> MatchCond<K, V, R>
pub fn empty() -> MatchCond<K, V, R>
pub fn matches(&self, value: &V) -> Result<Pending<V, R>, RbeError<K, V, R>>
pub fn single(single: SingleCond<K, V, R>) -> Self
pub fn simple( name: &str, cond: impl Fn(&V) -> Result<Pending<V, R>, RbeError<K, V, R>> + Clone + 'static, ) -> Self
Trait Implementations§
Source§impl<'de, K, V, R> Deserialize<'de> for MatchCond<K, V, R>
impl<'de, K, V, R> Deserialize<'de> for MatchCond<K, V, R>
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<K, V, R> Eq for MatchCond<K, V, R>
impl<K, V, R> StructuralPartialEq for MatchCond<K, V, R>
Auto Trait Implementations§
impl<K, V, R> Freeze for MatchCond<K, V, R>
impl<K, V, R> !RefUnwindSafe for MatchCond<K, V, R>
impl<K, V, R> !Send for MatchCond<K, V, R>
impl<K, V, R> !Sync for MatchCond<K, V, R>
impl<K, V, R> Unpin for MatchCond<K, V, R>
impl<K, V, R> !UnwindSafe for MatchCond<K, V, R>
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,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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