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