pub struct PluginRegistryEntry {
pub plugin_id: String,
pub name: String,
pub version: String,
pub abi_version: String,
pub description: Option<String>,
pub author: Option<String>,
pub license: Option<String>,
pub keywords: Option<Vec<String>>,
pub dependencies: Option<Vec<PluginDependency>>,
}Expand description
Plugin metadata for registry registration
Fields§
§plugin_id: String§name: String§version: String§abi_version: String§description: Option<String>§license: Option<String>§keywords: Option<Vec<String>>§dependencies: Option<Vec<PluginDependency>>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 · 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 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
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