Enum sdml_core::model::constraints::Quantifier
source · pub enum Quantifier {
Universal,
Existential,
}
Variants§
Universal
Corresponds to the grammar rule universal
. Introduced with the keyword forall
or the operator $\forall$.
Existential
Corresponds to the grammar rule existential
. Introduced with the keyword exists
or the operator $\exists$.
Trait Implementations§
source§impl Clone for Quantifier
impl Clone for Quantifier
source§fn clone(&self) -> Quantifier
fn clone(&self) -> Quantifier
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 Quantifier
impl Debug for Quantifier
source§impl Default for Quantifier
impl Default for Quantifier
source§impl<'de> Deserialize<'de> for Quantifier
impl<'de> Deserialize<'de> for Quantifier
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 Display for Quantifier
impl Display for Quantifier
source§impl FromStr for Quantifier
impl FromStr for Quantifier
source§impl PartialEq for Quantifier
impl PartialEq for Quantifier
source§fn eq(&self, other: &Quantifier) -> bool
fn eq(&self, other: &Quantifier) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for Quantifier
impl Serialize for Quantifier
impl Copy for Quantifier
impl Eq for Quantifier
impl StructuralPartialEq for Quantifier
Auto Trait Implementations§
impl RefUnwindSafe for Quantifier
impl Send for Quantifier
impl Sync for Quantifier
impl Unpin for Quantifier
impl UnwindSafe for Quantifier
Blanket Implementations§
§impl<T> AnyEq for T
impl<T> AnyEq for T
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