pub struct Marketplace {
pub name: String,
pub owner: Option<PluginAuthor>,
pub plugins: Vec<MarketplaceEntry>,
pub force_remove_deleted_plugins: Option<bool>,
pub allow_cross_marketplace_deps_on: Option<Vec<String>>,
}Expand description
A curated collection of plugins fetched from a marketplace source.
Fields§
§name: String§owner: Option<PluginAuthor>§plugins: Vec<MarketplaceEntry>§force_remove_deleted_plugins: Option<bool>§allow_cross_marketplace_deps_on: Option<Vec<String>>Trait Implementations§
Source§impl Clone for Marketplace
impl Clone for Marketplace
Source§fn clone(&self) -> Marketplace
fn clone(&self) -> Marketplace
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 Marketplace
impl Debug for Marketplace
Source§impl<'de> Deserialize<'de> for Marketplace
impl<'de> Deserialize<'de> for Marketplace
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 Marketplace
impl RefUnwindSafe for Marketplace
impl Send for Marketplace
impl Sync for Marketplace
impl Unpin for Marketplace
impl UnsafeUnpin for Marketplace
impl UnwindSafe for Marketplace
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