pub type SysResult<T = ()> = Result<T>;
Result type returned by most functions.
pub enum SysResult<T = ()> { Ok(T), Err(Error), }
Contains the success value
Contains the error value