nemicosm/src/gen.rs

8 lines
106 B
Rust
Raw Normal View History

2022-01-15 01:13:46 +00:00
trait Object {
fn id(&self) -> u64;
fn interfaces(self) -> Vec<String>;
fn release(self);
}