pub enum SkillTier {
Bundled,
Managed,
Workspace,
}Expand description
Priority tier for skill resolution.
Variant order defines precedence: Workspace overrides Managed, which overrides Bundled. Assigned by the registry at load time based on source directory — not stored in the skill file.
Variants§
Bundled
Ships with the binary.
Managed
Installed via package manager.
Workspace
Defined in the project workspace.
Trait Implementations§
Source§impl Ord for SkillTier
impl Ord for SkillTier
Source§impl PartialOrd for SkillTier
impl PartialOrd for SkillTier
impl Copy for SkillTier
impl Eq for SkillTier
impl StructuralPartialEq for SkillTier
Auto Trait Implementations§
impl Freeze for SkillTier
impl RefUnwindSafe for SkillTier
impl Send for SkillTier
impl Sync for SkillTier
impl Unpin for SkillTier
impl UnsafeUnpin for SkillTier
impl UnwindSafe for SkillTier
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> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
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.