pub struct MarketplaceCatalog {
pub plugins: Vec<String>,
pub auto_discovered: bool,
}Expand description
Marketplace plugin catalog.
Fields§
§plugins: Vec<String>List of plugin names available.
auto_discovered: boolWhether catalog was auto-discovered (no marketplace.json).
Trait Implementations§
Source§impl Clone for MarketplaceCatalog
impl Clone for MarketplaceCatalog
Source§fn clone(&self) -> MarketplaceCatalog
fn clone(&self) -> MarketplaceCatalog
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 MarketplaceCatalog
impl Debug for MarketplaceCatalog
Source§impl Default for MarketplaceCatalog
impl Default for MarketplaceCatalog
Source§fn default() -> MarketplaceCatalog
fn default() -> MarketplaceCatalog
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MarketplaceCatalog
impl<'de> Deserialize<'de> for MarketplaceCatalog
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 MarketplaceCatalog
impl RefUnwindSafe for MarketplaceCatalog
impl Send for MarketplaceCatalog
impl Sync for MarketplaceCatalog
impl Unpin for MarketplaceCatalog
impl UnsafeUnpin for MarketplaceCatalog
impl UnwindSafe for MarketplaceCatalog
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