mirror of
https://github.com/Astatin3/unshell.git
synced 2026-06-08 22:38:01 -06:00
14 lines
162 B
Rust
14 lines
162 B
Rust
pub enum TreeMessage {
|
|
Request,
|
|
Response,
|
|
Result(crate::error::ModuleError),
|
|
}
|
|
|
|
pub enum TreeType {
|
|
RootTree,
|
|
|
|
TypeA,
|
|
TypeB,
|
|
TypeC,
|
|
}
|