Struct vortex_expr::Disjunction
source · pub struct Disjunction { /* private fields */ }
Implementations§
source§impl Disjunction
impl Disjunction
pub fn iter(&self) -> impl Iterator<Item = &Conjunction>
Trait Implementations§
source§impl Clone for Disjunction
impl Clone for Disjunction
source§fn clone(&self) -> Disjunction
fn clone(&self) -> Disjunction
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 Disjunction
impl Debug for Disjunction
source§impl Default for Disjunction
impl Default for Disjunction
source§fn default() -> Disjunction
fn default() -> Disjunction
Returns the “default value” for a type. Read more
source§impl Display for Disjunction
impl Display for Disjunction
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 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 Disjunction
impl FromIterator<Predicate> for Disjunction
source§impl PartialEq for Disjunction
impl PartialEq for Disjunction
impl StructuralPartialEq for Disjunction
Auto Trait Implementations§
impl Freeze for Disjunction
impl RefUnwindSafe for Disjunction
impl Send for Disjunction
impl Sync for Disjunction
impl Unpin for Disjunction
impl UnwindSafe for Disjunction
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