nvme_driver/
err.rs

1
2
3
4
5
6
7
8
#[derive(Debug, Clone, Copy)]
pub enum Error {
    NoMemory,
    Layout,
    Unknown(&'static str),
}

pub type Result<T = ()> = core::result::Result<T, Error>;