pub struct SkillDescriptor {
pub id: SkillId,
pub description: String,
}Expand description
Snapshot record for a visible skill in a SkillRegistry.
Descriptors are read-only catalog entries for discovery, documentation, and adapter export. They do not participate in execution.
Fields§
§id: SkillIdStable skill identifier.
description: StringHuman-readable skill description. Empty when the skill does not provide one.
Trait Implementations§
Source§impl Clone for SkillDescriptor
impl Clone for SkillDescriptor
Source§fn clone(&self) -> SkillDescriptor
fn clone(&self) -> SkillDescriptor
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SkillDescriptor
impl Debug for SkillDescriptor
Source§impl<'de> Deserialize<'de> for SkillDescriptor
impl<'de> Deserialize<'de> for SkillDescriptor
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 SkillDescriptor
impl PartialEq for SkillDescriptor
Source§fn eq(&self, other: &SkillDescriptor) -> bool
fn eq(&self, other: &SkillDescriptor) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SkillDescriptor
impl Serialize for SkillDescriptor
impl Eq for SkillDescriptor
impl StructuralPartialEq for SkillDescriptor
Auto Trait Implementations§
impl Freeze for SkillDescriptor
impl RefUnwindSafe for SkillDescriptor
impl Send for SkillDescriptor
impl Sync for SkillDescriptor
impl Unpin for SkillDescriptor
impl UnsafeUnpin for SkillDescriptor
impl UnwindSafe for SkillDescriptor
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