pub struct RegistrySkill {
pub skill_id: String,
pub owner: String,
pub name: String,
pub description: Option<String>,
pub category: Option<String>,
pub source_category: Option<String>,
pub latest_version: String,
pub latest_digest: String,
pub versions: Vec<RegistrySkillVersion>,
}Fields§
§skill_id: String§owner: String§name: String§description: Option<String>§category: Option<String>§source_category: Option<String>§latest_version: String§latest_digest: String§versions: Vec<RegistrySkillVersion>Trait Implementations§
Source§impl Clone for RegistrySkill
impl Clone for RegistrySkill
Source§fn clone(&self) -> RegistrySkill
fn clone(&self) -> RegistrySkill
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 RegistrySkill
impl Debug for RegistrySkill
Source§impl<'de> Deserialize<'de> for RegistrySkill
impl<'de> Deserialize<'de> for RegistrySkill
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 RegistrySkill
impl PartialEq for RegistrySkill
Source§fn eq(&self, other: &RegistrySkill) -> bool
fn eq(&self, other: &RegistrySkill) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RegistrySkill
impl Serialize for RegistrySkill
impl StructuralPartialEq for RegistrySkill
Auto Trait Implementations§
impl Freeze for RegistrySkill
impl RefUnwindSafe for RegistrySkill
impl Send for RegistrySkill
impl Sync for RegistrySkill
impl Unpin for RegistrySkill
impl UnsafeUnpin for RegistrySkill
impl UnwindSafe for RegistrySkill
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