pub type Result<T> = Result<T, TokenStream>;Expand description
Result type, which return a token stream with the error
Aliased Type§
enum Result<T> {
Ok(T),
Err(TokenStream),
}pub type Result<T> = Result<T, TokenStream>;Result type, which return a token stream with the error
enum Result<T> {
Ok(T),
Err(TokenStream),
}