pub struct MarketplaceEntry {
pub name: String,
pub description: Option<String>,
pub version: Option<String>,
pub source: PluginSource,
pub category: Option<String>,
pub tags: Vec<String>,
pub strict: bool,
pub manifest_override: Option<PartialPluginManifest>,
}Expand description
An entry in a marketplace — describes a plugin and where to get it.
Fields§
§name: String§description: Option<String>§version: Option<String>§source: PluginSource§category: Option<String>§strict: bool§manifest_override: Option<PartialPluginManifest>Trait Implementations§
Source§impl Clone for MarketplaceEntry
impl Clone for MarketplaceEntry
Source§fn clone(&self) -> MarketplaceEntry
fn clone(&self) -> MarketplaceEntry
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 MarketplaceEntry
impl Debug for MarketplaceEntry
Source§impl<'de> Deserialize<'de> for MarketplaceEntry
impl<'de> Deserialize<'de> for MarketplaceEntry
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 MarketplaceEntry
impl RefUnwindSafe for MarketplaceEntry
impl Send for MarketplaceEntry
impl Sync for MarketplaceEntry
impl Unpin for MarketplaceEntry
impl UnsafeUnpin for MarketplaceEntry
impl UnwindSafe for MarketplaceEntry
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