pub struct SkillDetail {
pub summary: SkillSummary,
pub full_description: Option<String>,
pub author: Option<String>,
pub repository: Option<String>,
pub license: Option<String>,
pub tools: Vec<ToolInfo>,
pub instances: Vec<InstanceInfo>,
}Expand description
Detailed skill information
Fields§
§summary: SkillSummary§full_description: Option<String>§repository: Option<String>§license: Option<String>§tools: Vec<ToolInfo>§instances: Vec<InstanceInfo>Trait Implementations§
Source§impl Clone for SkillDetail
impl Clone for SkillDetail
Source§fn clone(&self) -> SkillDetail
fn clone(&self) -> SkillDetail
Returns a duplicate of the value. Read more
1.0.0 · 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 SkillDetail
impl Debug for SkillDetail
Source§impl<'de> Deserialize<'de> for SkillDetail
impl<'de> Deserialize<'de> for SkillDetail
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 SkillDetail
impl PartialEq for SkillDetail
Source§impl Serialize for SkillDetail
impl Serialize for SkillDetail
impl StructuralPartialEq for SkillDetail
Auto Trait Implementations§
impl Freeze for SkillDetail
impl RefUnwindSafe for SkillDetail
impl Send for SkillDetail
impl Sync for SkillDetail
impl Unpin for SkillDetail
impl UnwindSafe for SkillDetail
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<T> FromQuery for Twhere
T: DeserializeOwned,
impl<T> FromQuery for Twhere
T: DeserializeOwned,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoPropValue<Option<T>> for T
impl<T> IntoPropValue<Option<T>> for T
Source§fn into_prop_value(self) -> Option<T>
fn into_prop_value(self) -> Option<T>
Convert
self to a value of a Properties struct.Source§impl<T> IntoPropValue<T> for T
impl<T> IntoPropValue<T> for T
Source§fn into_prop_value(self) -> T
fn into_prop_value(self) -> T
Convert
self to a value of a Properties struct.