Struct syn::ParenthesizedGenericArguments
source · pub struct ParenthesizedGenericArguments {
pub paren_token: Paren,
pub inputs: Punctuated<Type, Comma>,
pub output: ReturnType,
}
Expand description
Arguments of a function path segment: the (A, B) -> C
in Fn(A,B) -> C
.
Fields§
§paren_token: Paren
§inputs: Punctuated<Type, Comma>
(A, B)
output: ReturnType
C