pub struct LogicalExpression<T, const N: usize> { /* private fields */ }
Expand description
Logical expression, such as AND
, OR
, NOT
.
Implementations§
Trait Implementations§
Source§impl<T: Clone, const N: usize> Clone for LogicalExpression<T, N>
impl<T: Clone, const N: usize> Clone for LogicalExpression<T, N>
Source§fn clone(&self) -> LogicalExpression<T, N>
fn clone(&self) -> LogicalExpression<T, N>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'de, T: Deserialize<'de>, const N: usize> Deserialize<'de> for LogicalExpression<T, N>
impl<'de, T: Deserialize<'de>, const N: usize> Deserialize<'de> for LogicalExpression<T, N>
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<T, const N: usize> StructuralPartialEq for LogicalExpression<T, N>
Auto Trait Implementations§
impl<T, const N: usize> Freeze for LogicalExpression<T, N>
impl<T, const N: usize> RefUnwindSafe for LogicalExpression<T, N>where
T: RefUnwindSafe,
impl<T, const N: usize> Send for LogicalExpression<T, N>where
T: Send,
impl<T, const N: usize> Sync for LogicalExpression<T, N>where
T: Sync,
impl<T, const N: usize> Unpin for LogicalExpression<T, N>
impl<T, const N: usize> UnwindSafe for LogicalExpression<T, N>where
T: UnwindSafe,
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<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