pub struct SessionPluginsEnableRequest {
pub names: Vec<String>,
}Expand description
Plugin names (or specs) to enable in the session’s authoritative working directory.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§names: Vec<String>Plugin names or “plugin@marketplace” specs to enable. Unknown names are ignored. Non-marketplace direct installs are always enabled and cannot be toggled via this API.
Trait Implementations§
Source§impl Clone for SessionPluginsEnableRequest
impl Clone for SessionPluginsEnableRequest
Source§impl Debug for SessionPluginsEnableRequest
impl Debug for SessionPluginsEnableRequest
Source§impl<'de> Deserialize<'de> for SessionPluginsEnableRequest
impl<'de> Deserialize<'de> for SessionPluginsEnableRequest
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 SessionPluginsEnableRequest
impl RefUnwindSafe for SessionPluginsEnableRequest
impl Send for SessionPluginsEnableRequest
impl Sync for SessionPluginsEnableRequest
impl Unpin for SessionPluginsEnableRequest
impl UnsafeUnpin for SessionPluginsEnableRequest
impl UnwindSafe for SessionPluginsEnableRequest
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