pub struct AutoUpdateResult {
pub name: String,
pub status: AutoUpdateStatus,
}Expand description
Outcome of a single auto-update attempt.
One AutoUpdateResult is returned per plugin that had auto_update = true
when PluginManager::check_auto_updates ran.
Fields§
§name: StringPlugin name.
status: AutoUpdateStatusSpecific outcome for this plugin.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AutoUpdateResult
impl RefUnwindSafe for AutoUpdateResult
impl Send for AutoUpdateResult
impl Sync for AutoUpdateResult
impl Unpin for AutoUpdateResult
impl UnsafeUnpin for AutoUpdateResult
impl UnwindSafe for AutoUpdateResult
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