pub struct Bound {
pub names: Vec<String>,
pub domain: Option<Expr>,
pub destructure: bool,
}Expand description
One x, y \in S group of a quantifier, function or set constructor.
Fields§
§names: Vec<String>§domain: Option<Expr>Absent for the unbounded forms, as in \E x : P.
destructure: boolTrue for <<x, y>> \in S, which destructures each element.
Implementations§
Trait Implementations§
impl Eq for Bound
impl StructuralPartialEq for Bound
Auto Trait Implementations§
impl Freeze for Bound
impl RefUnwindSafe for Bound
impl Send for Bound
impl Sync for Bound
impl Unpin for Bound
impl UnsafeUnpin for Bound
impl UnwindSafe for Bound
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