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