pub struct RegistryIndex {
pub schema_version: u32,
pub updated_at: String,
pub skills: BTreeMap<String, RegistrySkillEntry>,
}Fields§
§schema_version: u32§updated_at: String§skills: BTreeMap<String, RegistrySkillEntry>Implementations§
Trait Implementations§
Source§impl Clone for RegistryIndex
impl Clone for RegistryIndex
Source§fn clone(&self) -> RegistryIndex
fn clone(&self) -> RegistryIndex
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 RegistryIndex
impl Debug for RegistryIndex
Source§impl<'de> Deserialize<'de> for RegistryIndex
impl<'de> Deserialize<'de> for RegistryIndex
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 RegistryIndex
impl PartialEq for RegistryIndex
Source§fn eq(&self, other: &RegistryIndex) -> bool
fn eq(&self, other: &RegistryIndex) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RegistryIndex
impl Serialize for RegistryIndex
impl StructuralPartialEq for RegistryIndex
Auto Trait Implementations§
impl Freeze for RegistryIndex
impl RefUnwindSafe for RegistryIndex
impl Send for RegistryIndex
impl Sync for RegistryIndex
impl Unpin for RegistryIndex
impl UnsafeUnpin for RegistryIndex
impl UnwindSafe for RegistryIndex
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