pub struct SkillMeta {
pub name: String,
pub description: String,
pub when_to_use: Option<String>,
pub arguments: Vec<Value>,
pub source: SkillSourceRef,
}Expand description
A catalogue entry (no body).
Fields§
§name: String§description: String§when_to_use: Option<String>§arguments: Vec<Value>§source: SkillSourceRefTrait Implementations§
Source§impl<'de> Deserialize<'de> for SkillMeta
impl<'de> Deserialize<'de> for SkillMeta
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
impl StructuralPartialEq for SkillMeta
Auto Trait Implementations§
impl Freeze for SkillMeta
impl RefUnwindSafe for SkillMeta
impl Send for SkillMeta
impl Sync for SkillMeta
impl Unpin for SkillMeta
impl UnsafeUnpin for SkillMeta
impl UnwindSafe for SkillMeta
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