rebootinto-core 0.1.2

The core API for rebooting into other OS.
Documentation
1
2
3
4
5
6
7
8
9
10
use failure_derive::Fail;

#[derive(Fail, Debug)]
pub enum RebootIntoErrorKind {
    #[fail(display = "set BootNext error: {}", _0)]
    SetBootNextError(failure::Error),

    #[fail(display = "reboot error: {}", _0)]
    RebootError(failure::Error),
}