1264340154
- Started a bunch of crates. - Incomplete migration, or rewrites of most. - Some wild guessing with scsi. Probably better off coming up with my own solution if possible? Don't remember. Have to look into how the driver works again.
10 lines
169 B
Rust
10 lines
169 B
Rust
use derive_more::{Display, From};
|
|
use nix;
|
|
|
|
pub type Result<T> = std::result::Result<T, Error>;
|
|
|
|
#[derive(Debug, From, Display)]
|
|
pub enum Error {
|
|
Nix(nix::Error),
|
|
}
|