pub struct PluginUpdateResult {
pub success: bool,
pub message: String,
pub plugin_id: Option<String>,
pub new_version: Option<String>,
pub old_version: Option<String>,
pub already_up_to_date: Option<bool>,
pub scope: Option<String>,
}Expand description
Result of a plugin update operation
Fields§
§success: bool§message: String§plugin_id: Option<String>§new_version: Option<String>§old_version: Option<String>§already_up_to_date: Option<bool>§scope: Option<String>Trait Implementations§
Source§impl Clone for PluginUpdateResult
impl Clone for PluginUpdateResult
Source§fn clone(&self) -> PluginUpdateResult
fn clone(&self) -> PluginUpdateResult
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 moreAuto Trait Implementations§
impl Freeze for PluginUpdateResult
impl RefUnwindSafe for PluginUpdateResult
impl Send for PluginUpdateResult
impl Sync for PluginUpdateResult
impl Unpin for PluginUpdateResult
impl UnsafeUnpin for PluginUpdateResult
impl UnwindSafe for PluginUpdateResult
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