Implement Default for ExitAction.

This commit is contained in:
Bauke 2022-10-28 14:03:32 +02:00
parent 3f0f643a8a
commit c47d0a1e6e
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
1 changed files with 6 additions and 0 deletions

View File

@ -9,3 +9,9 @@ pub enum ExitAction {
Continue,
Stop,
}
impl Default for ExitAction {
fn default() -> Self {
Self::Stop
}
}