forked from AbleOS/ableos
19 lines
291 B
Rust
19 lines
291 B
Rust
pub enum ProtocolTypes {
|
|
Byte,
|
|
}
|
|
|
|
pub struct Decorator {
|
|
pub name: String,
|
|
pub value: Option<String>,
|
|
}
|
|
|
|
pub struct Protocol {
|
|
pub name: String,
|
|
pub decorators: Vec<Decorator>,
|
|
}
|
|
|
|
pub struct IDLEnum {
|
|
pub name: String,
|
|
pub accepted_values: Vec<(String, u64)>,
|
|
}
|