pub type Result<T> = Result<T, RsysError>;
Helper result definition for less repetition in type signatures used throughout this crate
pub enum Result<T> { Ok(T), Err(RsysError), }
Contains the success value
Contains the error value