pub enum CapabilityLevel {
None,
Basic,
Intermediate,
Advanced,
Expert,
Superhuman,
}Expand description
Capability levels
Variants§
None
No capability in this modality.
Basic
Minimal, limited capability.
Intermediate
Moderate competence in this modality.
Advanced
High proficiency with broad coverage.
Expert
Near-peak human-level performance.
Superhuman
Exceeds typical human-level performance.
Implementations§
Trait Implementations§
Source§impl Clone for CapabilityLevel
impl Clone for CapabilityLevel
Source§fn clone(&self) -> CapabilityLevel
fn clone(&self) -> CapabilityLevel
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 CapabilityLevel
impl Debug for CapabilityLevel
Source§impl<'de> Deserialize<'de> for CapabilityLevel
impl<'de> Deserialize<'de> for CapabilityLevel
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CapabilityLevel
impl PartialEq for CapabilityLevel
Source§impl Serialize for CapabilityLevel
impl Serialize for CapabilityLevel
impl StructuralPartialEq for CapabilityLevel
Auto Trait Implementations§
impl Freeze for CapabilityLevel
impl RefUnwindSafe for CapabilityLevel
impl Send for CapabilityLevel
impl Sync for CapabilityLevel
impl Unpin for CapabilityLevel
impl UnwindSafe for CapabilityLevel
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