pub struct CleanupEvent {
pub succeeded: bool,
pub errors: Vec<String>,
}Fields§
§succeeded: bool§errors: Vec<String>Implementations§
Source§impl CleanupEvent
impl CleanupEvent
pub fn from_errors(errors: Vec<String>) -> Self
Trait Implementations§
Source§impl Clone for CleanupEvent
impl Clone for CleanupEvent
Source§fn clone(&self) -> CleanupEvent
fn clone(&self) -> CleanupEvent
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 CleanupEvent
impl Debug for CleanupEvent
Auto Trait Implementations§
impl Freeze for CleanupEvent
impl RefUnwindSafe for CleanupEvent
impl Send for CleanupEvent
impl Sync for CleanupEvent
impl Unpin for CleanupEvent
impl UnsafeUnpin for CleanupEvent
impl UnwindSafe for CleanupEvent
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