pub struct RegistrySkillEntry {
pub latest: String,
pub description: String,
pub publisher: String,
pub category: String,
pub tags: Vec<String>,
pub content_sha256: String,
pub install_count: u64,
}Fields§
§latest: String§description: String§publisher: String§category: String§content_sha256: String§install_count: u64Trait Implementations§
Source§impl Clone for RegistrySkillEntry
impl Clone for RegistrySkillEntry
Source§fn clone(&self) -> RegistrySkillEntry
fn clone(&self) -> RegistrySkillEntry
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 RegistrySkillEntry
impl Debug for RegistrySkillEntry
Source§impl<'de> Deserialize<'de> for RegistrySkillEntry
impl<'de> Deserialize<'de> for RegistrySkillEntry
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
Auto Trait Implementations§
impl Freeze for RegistrySkillEntry
impl RefUnwindSafe for RegistrySkillEntry
impl Send for RegistrySkillEntry
impl Sync for RegistrySkillEntry
impl Unpin for RegistrySkillEntry
impl UnsafeUnpin for RegistrySkillEntry
impl UnwindSafe for RegistrySkillEntry
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