Struct PluginRegistryEntry
pub struct PluginRegistryEntry {
pub name: String,
pub version: String,
pub description: Option<String>,
pub author: Option<String>,
pub capabilities: Vec<String>,
pub url: String,
pub sha256: Option<String>,
}Expand description
Metadata entry from an installable plugin registry.
Fields§
§name: String§version: String§description: Option<String>§capabilities: Vec<String>§url: String§sha256: Option<String>Trait Implementations§
Source§impl Clone for PluginRegistryEntry
impl Clone for PluginRegistryEntry
Source§fn clone(&self) -> PluginRegistryEntry
fn clone(&self) -> PluginRegistryEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · §fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PluginRegistryEntry
impl Debug for PluginRegistryEntry
Source§impl<'de> Deserialize<'de> for PluginRegistryEntry
impl<'de> Deserialize<'de> for PluginRegistryEntry
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
impl Eq for PluginRegistryEntry
Source§impl PartialEq for PluginRegistryEntry
impl PartialEq for PluginRegistryEntry
Source§fn eq(&self, other: &PluginRegistryEntry) -> bool
fn eq(&self, other: &PluginRegistryEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PluginRegistryEntry
impl Serialize for PluginRegistryEntry
impl StructuralPartialEq for PluginRegistryEntry
Auto Trait Implementations§
impl Freeze for PluginRegistryEntry
impl RefUnwindSafe for PluginRegistryEntry
impl Send for PluginRegistryEntry
impl Sync for PluginRegistryEntry
impl Unpin for PluginRegistryEntry
impl UnsafeUnpin for PluginRegistryEntry
impl UnwindSafe for PluginRegistryEntry
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.