Files
kramer/crates/scsi/src/error.rs
T
Cutieguwu 1264340154 No clue what-all's sitting here.
- 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.
2026-06-21 10:34:44 -04:00

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),
}