pub enum ShutdownError {
TaskPanicked,
TaskCancelled,
Timeout,
SignalFailed,
}Expand description
Error returned when emitter shutdown fails.
Variants§
TaskPanicked
Task panicked during shutdown
TaskCancelled
Task was cancelled before completing
Timeout
Shutdown exceeded the specified timeout
SignalFailed
Failed to send shutdown signal (task may have already exited)
Trait Implementations§
Source§impl Clone for ShutdownError
impl Clone for ShutdownError
Source§fn clone(&self) -> ShutdownError
fn clone(&self) -> ShutdownError
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 moreSource§impl Debug for ShutdownError
impl Debug for ShutdownError
Source§impl Display for ShutdownError
Available on crate feature async only.
impl Display for ShutdownError
Available on crate feature
async only.Source§impl Error for ShutdownError
Available on crate feature async only.
impl Error for ShutdownError
Available on crate feature
async only.1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for ShutdownError
impl PartialEq for ShutdownError
impl Eq for ShutdownError
impl StructuralPartialEq for ShutdownError
Auto Trait Implementations§
impl Freeze for ShutdownError
impl RefUnwindSafe for ShutdownError
impl Send for ShutdownError
impl Sync for ShutdownError
impl Unpin for ShutdownError
impl UnwindSafe for ShutdownError
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