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