pub type LinuxResult<T = ()> = Result<T, LinuxError>;Expand description
A specialized Result type with LinuxError as the error type.
Aliased Type§
pub enum LinuxResult<T = ()> {
Ok(T),
Err(LinuxError),
}pub type LinuxResult<T = ()> = Result<T, LinuxError>;A specialized Result type with LinuxError as the error type.
pub enum LinuxResult<T = ()> {
Ok(T),
Err(LinuxError),
}