type BoxedResult<T> = Result<T, Box<FsError>>;
enum BoxedResult<T> { Ok(T), Err(Box<FsError>), }
Contains the success value
Contains the error value