pub type Result<T> = Result<T, LinuxError>;
结果类型别名
pub enum Result<T> { Ok(T), Err(LinuxError), }
Contains the success value
Contains the error value