Struct syn::ParenthesizedGenericArguments [−][src]
pub struct ParenthesizedGenericArguments { pub paren_token: Paren, pub inputs: Punctuated<Type, Comma>, pub output: ReturnType, }
Arguments of a function path segment: the (A, B) -> C
in Fn(A,B) -> C
.
This type is available only if Syn is built with the "derive"
or "full"
feature.
Fields
paren_token: Paren
inputs: Punctuated<Type, Comma>
(A, B)
output: ReturnType
C
Trait Implementations
impl Clone for ParenthesizedGenericArguments
[src]
impl Clone for ParenthesizedGenericArguments
[src]fn clone(&self) -> Self
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for ParenthesizedGenericArguments
[src]
impl Debug for ParenthesizedGenericArguments
[src]impl Hash for ParenthesizedGenericArguments
[src]
impl Hash for ParenthesizedGenericArguments
[src]impl Parse for ParenthesizedGenericArguments
[src]
impl Parse for ParenthesizedGenericArguments
[src]fn parse(input: ParseStream<'_>) -> Result<Self>
[src]
impl ToTokens for ParenthesizedGenericArguments
[src]
impl ToTokens for ParenthesizedGenericArguments
[src]