pub struct SchemeMetadata {
pub citation: String,
pub domain_tags: Vec<String>,
pub presumptive: bool,
pub strength: SchemeStrength,
}Expand description
Metadata about a scheme: citation, tags, strength.
Fields§
§citation: StringCitation (e.g., “Walton 2008 p.14”).
Domain tags for filtering (e.g., [“epistemic”, “authority”]).
presumptive: boolWhether the scheme is presumptive (virtually all Walton schemes are).
strength: SchemeStrengthHow strong the scheme’s inference typically is.
Trait Implementations§
Source§impl Clone for SchemeMetadata
impl Clone for SchemeMetadata
Source§fn clone(&self) -> SchemeMetadata
fn clone(&self) -> SchemeMetadata
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 SchemeMetadata
impl Debug for SchemeMetadata
Source§impl PartialEq for SchemeMetadata
impl PartialEq for SchemeMetadata
impl Eq for SchemeMetadata
impl StructuralPartialEq for SchemeMetadata
Auto Trait Implementations§
impl Freeze for SchemeMetadata
impl RefUnwindSafe for SchemeMetadata
impl Send for SchemeMetadata
impl Sync for SchemeMetadata
impl Unpin for SchemeMetadata
impl UnsafeUnpin for SchemeMetadata
impl UnwindSafe for SchemeMetadata
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,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.