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),
}
Variants§
Layout§
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.