pub type Result<T> = Result<Status<T>, Error>;
Expand description
A Result of any parsing action.
If the input is invalid, an Error
will be returned. Note that incomplete
data is not considered invalid, and so will not return an error, but rather
a Ok(Status::Partial)
.
Aliased Type§
enum Result<T> {
Ok(Status<T>),
Err(Error),
}