#[non_exhaustive]pub enum ImportanceCategory {
Corrective,
Stateful,
Decisive,
Reinforcing,
}Expand description
A category of importance assigned to a passage during classification.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Corrective
The passage corrects or contradicts earlier information.
Stateful
The passage records a state change (entity is now value).
Decisive
The passage records a decision and its rationale.
Reinforcing
The passage repeats or reinforces a recurring topic.
Trait Implementations§
Source§impl Clone for ImportanceCategory
impl Clone for ImportanceCategory
Source§fn clone(&self) -> ImportanceCategory
fn clone(&self) -> ImportanceCategory
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 ImportanceCategory
Source§impl Debug for ImportanceCategory
impl Debug for ImportanceCategory
impl Eq for ImportanceCategory
Source§impl Hash for ImportanceCategory
impl Hash for ImportanceCategory
Source§impl PartialEq for ImportanceCategory
impl PartialEq for ImportanceCategory
Source§fn eq(&self, other: &ImportanceCategory) -> bool
fn eq(&self, other: &ImportanceCategory) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ImportanceCategory
Auto Trait Implementations§
impl Freeze for ImportanceCategory
impl RefUnwindSafe for ImportanceCategory
impl Send for ImportanceCategory
impl Sync for ImportanceCategory
impl Unpin for ImportanceCategory
impl UnsafeUnpin for ImportanceCategory
impl UnwindSafe for ImportanceCategory
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