pub enum Definiteness {
Unknown,
Definite,
Indefinite,
}Expand description
Definiteness axis.
Defaults to Definiteness::Unknown.
Variants§
Trait Implementations§
Source§impl Clone for Definiteness
impl Clone for Definiteness
Source§fn clone(&self) -> Definiteness
fn clone(&self) -> Definiteness
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 Definiteness
impl Debug for Definiteness
Source§impl Default for Definiteness
impl Default for Definiteness
Source§fn default() -> Definiteness
fn default() -> Definiteness
Returns the “default value” for a type. Read more
Source§impl PartialEq for Definiteness
impl PartialEq for Definiteness
Source§fn eq(&self, other: &Definiteness) -> bool
fn eq(&self, other: &Definiteness) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for Definiteness
impl Eq for Definiteness
impl StructuralPartialEq for Definiteness
Auto Trait Implementations§
impl Freeze for Definiteness
impl RefUnwindSafe for Definiteness
impl Send for Definiteness
impl Sync for Definiteness
impl Unpin for Definiteness
impl UnsafeUnpin for Definiteness
impl UnwindSafe for Definiteness
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