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