pub struct Quantifier {
pub name: String,
pub ty: SpecType,
pub constraint: Option<SpecExpr>,
}Fields§
§name: String§ty: SpecType§constraint: Option<SpecExpr>Optional where predicate restricting the quantifier domain.
Variables in scope are previously-declared quantifiers and name itself.
Trait Implementations§
Source§impl Clone for Quantifier
impl Clone for Quantifier
Source§fn clone(&self) -> Quantifier
fn clone(&self) -> Quantifier
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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<'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 PartialEq for Quantifier
impl PartialEq for Quantifier
Source§fn eq(&self, other: &Quantifier) -> bool
fn eq(&self, other: &Quantifier) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for Quantifier
impl Serialize for Quantifier
impl StructuralPartialEq for Quantifier
Auto Trait Implementations§
impl Freeze for Quantifier
impl RefUnwindSafe for Quantifier
impl Send for Quantifier
impl Sync for Quantifier
impl Unpin for Quantifier
impl UnsafeUnpin for Quantifier
impl UnwindSafe for Quantifier
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