rafts 0.1.0

Minimal experimental async block device I/O abstraction
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![cfg_attr(not(feature = "std"), no_std)]

#[derive(Copy, Clone, Eq, PartialEq, Debug)]
#[repr(i32)]
pub enum Errno {
    /// No error occurred.
    Success = 0,
    /// An unknown error occurred.
    Unknown = 1,
    /// The operation was interrupted.
    Interrupted = 2,
    /// The operation timed out.
    TimedOut = 3,
}