pub struct SessionPluginsMarketplacesRemoveResult {
pub dependent_plugins: Option<Vec<String>>,
pub removed: bool,
}Expand description
Outcome of the remove attempt, including dependent-plugin info when applicable.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§dependent_plugins: Option<Vec<String>>Names of installed plugins that prevented removal. Populated only when removed=false.
removed: boolTrue when the marketplace was actually removed. False when removal was skipped because the marketplace has dependent plugins and force was not set.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for SessionPluginsMarketplacesRemoveResult
impl<'de> Deserialize<'de> for SessionPluginsMarketplacesRemoveResult
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 SessionPluginsMarketplacesRemoveResult
impl RefUnwindSafe for SessionPluginsMarketplacesRemoveResult
impl Send for SessionPluginsMarketplacesRemoveResult
impl Sync for SessionPluginsMarketplacesRemoveResult
impl Unpin for SessionPluginsMarketplacesRemoveResult
impl UnsafeUnpin for SessionPluginsMarketplacesRemoveResult
impl UnwindSafe for SessionPluginsMarketplacesRemoveResult
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