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