pub type Result<T> = Result<T, Error>;
A Result with the error type fixed as arbitrary::Error.
Result
arbitrary::Error
Either an Ok(T) or Err(arbitrary::Error).
Ok(T)
Err(arbitrary::Error)
enum Result<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value