pub type Result<T> = Result<T, Errno>;
Nix Result Type
enum Result<T> { Ok(T), Err(Errno), }
Contains the success value
Contains the error value