pub enum Definiteness {
Definite,
Indefinite,
Proximal,
Distal,
}Expand description
Article definiteness for noun phrases.
Variants§
Definite
The referent is uniquely identifiable (“the”).
Indefinite
The referent is not uniquely identifiable (“a”, “an”).
Proximal
The referent is near the speaker (“this”, “these”).
Distal
The referent is far from the speaker (“that”, “those”).
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 · 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 Hash for Definiteness
impl Hash for Definiteness
Source§impl PartialEq for Definiteness
impl PartialEq for Definiteness
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 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