generated from luke-else/egui-template
10 lines
150 B
Rust
10 lines
150 B
Rust
|
use strum::Display;
|
||
|
|
||
|
|
||
|
#[derive(Debug, Display)]
|
||
|
pub enum AvBagError {
|
||
|
UIError,
|
||
|
RequestNotAvailable
|
||
|
}
|
||
|
|
||
|
impl std::error::Error for AvBagError {}
|