#[non_exhaustive]pub enum ShutdownType {
Interrupt,
Terminate,
}
Expand description
This crate currently distinguishes two kinds of shutdown request.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Interrupt
Program was interrupted via eg. Ctrl + C. This corresponds
to SIGINT
on unix-based platforms.
Terminate
Program was requested to terminate normally. This corresponds
to SIGTERM
on unix-based platforms.
Trait Implementations§
Source§impl Clone for ShutdownType
impl Clone for ShutdownType
Source§fn clone(&self) -> ShutdownType
fn clone(&self) -> ShutdownType
Returns a copy 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 ShutdownType
impl Debug for ShutdownType
Source§impl Hash for ShutdownType
impl Hash for ShutdownType
Source§impl PartialEq for ShutdownType
impl PartialEq for ShutdownType
impl Copy for ShutdownType
impl Eq for ShutdownType
impl StructuralPartialEq for ShutdownType
Auto Trait Implementations§
impl Freeze for ShutdownType
impl RefUnwindSafe for ShutdownType
impl Send for ShutdownType
impl Sync for ShutdownType
impl Unpin for ShutdownType
impl UnwindSafe for ShutdownType
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