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