pub enum CoreEvent {
Info(String),
Warning(String),
Installed {
slug: String,
title: String,
},
AddedAsDependency {
slug: String,
},
AlreadyInstalled {
slug: String,
},
LinkedFile {
filename: String,
},
Purged {
slug: String,
},
TaskStarted(String),
TaskFinished,
}Variants§
Info(String)
Warning(String)
Installed
AddedAsDependency
AlreadyInstalled
LinkedFile
Purged
TaskStarted(String)
TaskFinished
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CoreEvent
impl RefUnwindSafe for CoreEvent
impl Send for CoreEvent
impl Sync for CoreEvent
impl Unpin for CoreEvent
impl UnsafeUnpin for CoreEvent
impl UnwindSafe for CoreEvent
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