9 lines
168 B
Rust
9 lines
168 B
Rust
// path_from_the_root: src/component/error.rs
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
|
pub enum ComponentError {
|
|
InvalidAction,
|
|
InvalidFocus,
|
|
NoComponent,
|
|
}
|