pub struct SkillDescriptor {
pub id: SkillId,
pub name: SkillName,
pub canonical_path: SkillCanonicalPath,
pub source: SkillSource,
pub exposure: SkillExposure,
pub activation: SkillActivationState,
pub description: String,
pub short_description: Option<String>,
pub experimental: bool,
pub diagnostics: Vec<SkillDiagnosticMessage>,
pub agent_metadata: Option<SkillAgentMetadata>,
}Fields§
§id: SkillId§name: SkillName§canonical_path: SkillCanonicalPath§source: SkillSource§exposure: SkillExposure§activation: SkillActivationState§description: String§short_description: Option<String>§experimental: bool§diagnostics: Vec<SkillDiagnosticMessage>§agent_metadata: Option<SkillAgentMetadata>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
impl Eq for SkillDescriptor
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 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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.