Struct vortex_expr::Conjunction
source · pub struct Conjunction { /* private fields */ }
Implementations§
Trait Implementations§
source§impl Clone for Conjunction
impl Clone for Conjunction
source§fn clone(&self) -> Conjunction
fn clone(&self) -> Conjunction
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 Debug for Conjunction
impl Debug for Conjunction
source§impl Default for Conjunction
impl Default for Conjunction
source§fn default() -> Conjunction
fn default() -> Conjunction
Returns the “default value” for a type. Read more
source§impl Display for Conjunction
impl Display for Conjunction
source§impl From<Conjunction> for Disjunction
impl From<Conjunction> for Disjunction
source§fn from(value: Conjunction) -> Self
fn from(value: Conjunction) -> Self
Converts to this type from the input type.
source§impl From<Predicate> for Conjunction
impl From<Predicate> for Conjunction
source§impl FromIterator<Conjunction> for Disjunction
impl FromIterator<Conjunction> for Disjunction
source§fn from_iter<T: IntoIterator<Item = Conjunction>>(iter: T) -> Self
fn from_iter<T: IntoIterator<Item = Conjunction>>(iter: T) -> Self
Creates a value from an iterator. Read more
source§impl FromIterator<Predicate> for Conjunction
impl FromIterator<Predicate> for Conjunction
source§impl PartialEq for Conjunction
impl PartialEq for Conjunction
impl StructuralPartialEq for Conjunction
Auto Trait Implementations§
impl Freeze for Conjunction
impl RefUnwindSafe for Conjunction
impl Send for Conjunction
impl Sync for Conjunction
impl Unpin for Conjunction
impl UnwindSafe for Conjunction
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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