pub struct SkillSummary {
pub id: String,
pub name: String,
pub description: String,
pub version: String,
pub author: String,
pub enabled: bool,
pub workflows: usize,
pub tags: Vec<String>,
}Expand description
Skill info summary for display.
Fields§
§id: String§name: String§description: String§version: String§enabled: bool§workflows: usizeTrait Implementations§
Source§impl Clone for SkillSummary
impl Clone for SkillSummary
Source§fn clone(&self) -> SkillSummary
fn clone(&self) -> SkillSummary
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 SkillSummary
impl Debug for SkillSummary
Source§impl<'de> Deserialize<'de> for SkillSummary
impl<'de> Deserialize<'de> for SkillSummary
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 From<&InstalledSkill> for SkillSummary
impl From<&InstalledSkill> for SkillSummary
Source§fn from(skill: &InstalledSkill) -> Self
fn from(skill: &InstalledSkill) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SkillSummary
impl RefUnwindSafe for SkillSummary
impl Send for SkillSummary
impl Sync for SkillSummary
impl Unpin for SkillSummary
impl UnsafeUnpin for SkillSummary
impl UnwindSafe for SkillSummary
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