8 lines
115 B
Rust
8 lines
115 B
Rust
use std::path::Path;
|
|
|
|
pub trait BlockDevice: std::fmt::Debug {
|
|
fn path(&self) -> &Path;
|
|
}
|
|
|
|
pub trait Origin {}
|