pub type SysResult<T> = Result<T, ErrorCode>;
Alias to result used by this crate
enum SysResult<T> { Ok(T), Err(ErrorCode), }
Contains the success value
Contains the error value