pub type Result<T, E = Error> = Result<T, E>;
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, E = Error> { Ok(T), Err(E), }
Contains the success value
Contains the error value