Type Alias linux_unsafe::result::Result
source · pub type Result<T> = Result<T, Error>;
Expand description
The result type used for all of the system call wrapper functions to distinguish between success and error results.
Aliased Type§
enum Result<T> {
Ok(T),
Err(Error),
}