pub enum SkillOrigin {
AppSequence,
ToolChain,
SuggestionPattern,
NotificationResponse,
UserTaught,
}Expand description
How the skill was discovered.
Variants§
AppSequence
Mined from repeated app transition sequences.
ToolChain
Mined from repeated tool call chains.
SuggestionPattern
Mined from repeated suggestion-accept patterns.
NotificationResponse
Mined from notification → action response patterns.
UserTaught
Manually taught by the user.
Implementations§
Trait Implementations§
Source§impl Clone for SkillOrigin
impl Clone for SkillOrigin
Source§fn clone(&self) -> SkillOrigin
fn clone(&self) -> SkillOrigin
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 SkillOrigin
impl Debug for SkillOrigin
Source§impl<'de> Deserialize<'de> for SkillOrigin
impl<'de> Deserialize<'de> for SkillOrigin
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 Hash for SkillOrigin
impl Hash for SkillOrigin
Source§impl PartialEq for SkillOrigin
impl PartialEq for SkillOrigin
Source§impl Serialize for SkillOrigin
impl Serialize for SkillOrigin
impl Copy for SkillOrigin
impl Eq for SkillOrigin
impl StructuralPartialEq for SkillOrigin
Auto Trait Implementations§
impl Freeze for SkillOrigin
impl RefUnwindSafe for SkillOrigin
impl Send for SkillOrigin
impl Sync for SkillOrigin
impl Unpin for SkillOrigin
impl UnsafeUnpin for SkillOrigin
impl UnwindSafe for SkillOrigin
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