pub struct PluginsUpdateAllResult {
pub results: Vec<PluginUpdateAllEntry>,
}Expand description
Result of updating all installed plugins.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§results: Vec<PluginUpdateAllEntry>Per-plugin update results in deterministic order.
Trait Implementations§
Source§impl Clone for PluginsUpdateAllResult
impl Clone for PluginsUpdateAllResult
Source§fn clone(&self) -> PluginsUpdateAllResult
fn clone(&self) -> PluginsUpdateAllResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PluginsUpdateAllResult
impl Debug for PluginsUpdateAllResult
Source§impl Default for PluginsUpdateAllResult
impl Default for PluginsUpdateAllResult
Source§fn default() -> PluginsUpdateAllResult
fn default() -> PluginsUpdateAllResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PluginsUpdateAllResult
impl<'de> Deserialize<'de> for PluginsUpdateAllResult
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 PluginsUpdateAllResult
impl RefUnwindSafe for PluginsUpdateAllResult
impl Send for PluginsUpdateAllResult
impl Sync for PluginsUpdateAllResult
impl Unpin for PluginsUpdateAllResult
impl UnsafeUnpin for PluginsUpdateAllResult
impl UnwindSafe for PluginsUpdateAllResult
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