pub enum MarketplaceProgressEvent {
Installing {
name: String,
},
Installed {
name: String,
},
Failed {
name: String,
error: String,
},
}Expand description
Progress event types for marketplace installation
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for MarketplaceProgressEvent
impl Clone for MarketplaceProgressEvent
Source§fn clone(&self) -> MarketplaceProgressEvent
fn clone(&self) -> MarketplaceProgressEvent
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 MarketplaceProgressEvent
impl RefUnwindSafe for MarketplaceProgressEvent
impl Send for MarketplaceProgressEvent
impl Sync for MarketplaceProgressEvent
impl Unpin for MarketplaceProgressEvent
impl UnsafeUnpin for MarketplaceProgressEvent
impl UnwindSafe for MarketplaceProgressEvent
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