pub enum IncidentEvent {
IoWriteError {
os_code: Option<i32>,
message: String,
},
}Expand description
Unexpected incidents that might require (manual) intervention
Variants§
Trait Implementations§
Source§impl Clone for IncidentEvent
impl Clone for IncidentEvent
Source§fn clone(&self) -> IncidentEvent
fn clone(&self) -> IncidentEvent
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 IncidentEvent
impl RefUnwindSafe for IncidentEvent
impl Send for IncidentEvent
impl Sync for IncidentEvent
impl Unpin for IncidentEvent
impl UnwindSafe for IncidentEvent
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