pub type Result<T> = Result<T, Error>;Expand description
The result of a Syn parser.
Aliased Type§
enum Result<T> {
    Ok(T),
    Err(Error),
}pub type Result<T> = Result<T, Error>;The result of a Syn parser.
enum Result<T> {
    Ok(T),
    Err(Error),
}