pub enum FactCategory {
Decision,
Definition,
Requirement,
CodeChange,
Configuration,
Reference,
Other,
}Expand description
Category of extracted facts
Variants§
Decision
A decision that was made.
Definition
A definition or clarification of a term.
Requirement
A requirement or constraint.
CodeChange
A code change, fix, or modification.
Configuration
A configuration or settings change.
Reference
A reference to external documentation or resources.
Other
An uncategorized fact.
Implementations§
Trait Implementations§
Source§impl Clone for FactCategory
impl Clone for FactCategory
Source§fn clone(&self) -> FactCategory
fn clone(&self) -> FactCategory
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 FactCategory
impl Debug for FactCategory
Source§impl PartialEq for FactCategory
impl PartialEq for FactCategory
impl Copy for FactCategory
impl Eq for FactCategory
impl StructuralPartialEq for FactCategory
Auto Trait Implementations§
impl Freeze for FactCategory
impl RefUnwindSafe for FactCategory
impl Send for FactCategory
impl Sync for FactCategory
impl Unpin for FactCategory
impl UnsafeUnpin for FactCategory
impl UnwindSafe for FactCategory
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.