pub struct SingleCond<K, V, R>where
K: Hash + Eq + Display + Default,
V: Hash + Eq + Default + PartialEq + Clone,
R: Hash + Default + PartialEq + Clone,{ /* private fields */ }
Expand description
Represents a matching condition
Implementations§
Source§impl<K, V, R> SingleCond<K, V, R>
impl<K, V, R> SingleCond<K, V, R>
pub fn matches(&self, value: &V) -> Result<Pending<V, R>, RbeError<K, V, R>>
pub fn new() -> SingleCond<K, V, R>
pub fn with_name(self, name: &str) -> Self
pub fn with_cond( self, cond: impl Fn(&V) -> Result<Pending<V, R>, RbeError<K, V, R>> + Clone + 'static, ) -> Self
pub fn name(&self) -> String
Trait Implementations§
Source§impl<K, V, R> Clone for SingleCond<K, V, R>
impl<K, V, R> Clone for SingleCond<K, V, R>
Source§impl<K, V, R> Debug for SingleCond<K, V, R>
impl<K, V, R> Debug for SingleCond<K, V, R>
Source§impl<K, V, R> Default for SingleCond<K, V, R>
impl<K, V, R> Default for SingleCond<K, V, R>
Source§impl<'de, K, V, R> Deserialize<'de> for SingleCond<K, V, R>
impl<'de, K, V, R> Deserialize<'de> for SingleCond<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
Source§impl<K, V, R> Display for SingleCond<K, V, R>
impl<K, V, R> Display for SingleCond<K, V, R>
Source§impl<K, V, R> Hash for SingleCond<K, V, R>
impl<K, V, R> Hash for SingleCond<K, V, R>
Source§impl<K, V, R> PartialEq for SingleCond<K, V, R>
impl<K, V, R> PartialEq for SingleCond<K, V, R>
Source§impl<K, V, R> Serialize for SingleCond<K, V, R>
impl<K, V, R> Serialize for SingleCond<K, V, R>
impl<K, V, R> Eq for SingleCond<K, V, R>
Auto Trait Implementations§
impl<K, V, R> Freeze for SingleCond<K, V, R>
impl<K, V, R> !RefUnwindSafe for SingleCond<K, V, R>
impl<K, V, R> !Send for SingleCond<K, V, R>
impl<K, V, R> !Sync for SingleCond<K, V, R>
impl<K, V, R> Unpin for SingleCond<K, V, R>
impl<K, V, R> !UnwindSafe for SingleCond<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