pub struct SkillSummary {
pub name: String,
pub category: Category,
pub version: u32,
pub description: String,
}Expand description
Lightweight summary used by devboy skills list — avoids loading the
full body when a source only needs the names and descriptions.
Fields§
§name: String§category: Category§version: u32Integer version.
description: StringOne-line description.
Trait 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 (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 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<&Skill> for SkillSummary
impl From<&Skill> for SkillSummary
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