pub enum BlockQuant {
ExactCount(u32),
ExactCountDefinite(u32),
UniversalDefinite,
}Expand description
The quantifier kind of a Sentence::Quantified block.
Variants§
ExactCount(u32)
exactly N X $v: — exact-count over the indefinite restrictor.
ExactCountDefinite(u32)
exactly N the X $v: — exact-count over the opaque definite domain.
UniversalDefinite
every the X $v: — universal over the opaque definite domain.
Trait Implementations§
Source§impl Clone for BlockQuant
impl Clone for BlockQuant
Source§fn clone(&self) -> BlockQuant
fn clone(&self) -> BlockQuant
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 moreimpl Copy for BlockQuant
Source§impl Debug for BlockQuant
impl Debug for BlockQuant
impl Eq for BlockQuant
Source§impl PartialEq for BlockQuant
impl PartialEq for BlockQuant
impl StructuralPartialEq for BlockQuant
Auto Trait Implementations§
impl Freeze for BlockQuant
impl RefUnwindSafe for BlockQuant
impl Send for BlockQuant
impl Sync for BlockQuant
impl Unpin for BlockQuant
impl UnsafeUnpin for BlockQuant
impl UnwindSafe for BlockQuant
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