pub struct SkillMetadata {
pub dependencies: Option<SkillDependencies>,
pub description: String,
pub enabled: bool,
pub interface: Option<SkillInterface>,
pub name: String,
pub path: AbsolutePathBuf,
pub scope: SkillScope,
pub short_description: Option<String>,
}Fields§
§dependencies: Option<SkillDependencies>§description: String§enabled: bool§interface: Option<SkillInterface>§name: String§path: AbsolutePathBuf§scope: SkillScope§short_description: Option<String>Trait Implementations§
Source§impl Clone for SkillMetadata
impl Clone for SkillMetadata
Source§fn clone(&self) -> SkillMetadata
fn clone(&self) -> SkillMetadata
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 SkillMetadata
impl Debug for SkillMetadata
Source§impl<'de> Deserialize<'de> for SkillMetadata
impl<'de> Deserialize<'de> for SkillMetadata
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 SkillMetadata
impl PartialEq for SkillMetadata
Source§fn eq(&self, other: &SkillMetadata) -> bool
fn eq(&self, other: &SkillMetadata) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SkillMetadata
impl Serialize for SkillMetadata
impl StructuralPartialEq for SkillMetadata
Auto Trait Implementations§
impl Freeze for SkillMetadata
impl RefUnwindSafe for SkillMetadata
impl Send for SkillMetadata
impl Sync for SkillMetadata
impl Unpin for SkillMetadata
impl UnsafeUnpin for SkillMetadata
impl UnwindSafe for SkillMetadata
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