Struct syn::ParenthesizedParameterData
[−]
[src]
pub struct ParenthesizedParameterData { pub inputs: Vec<Ty>, pub output: Option<Ty>, }
A path like Foo(A,B) -> C
Fields
inputs: Vec<Ty>
(A, B)
output: Option<Ty>
C
Trait Implementations
impl ToTokens for ParenthesizedParameterData
[src]
impl Debug for ParenthesizedParameterData
[src]
impl Clone for ParenthesizedParameterData
[src]
fn clone(&self) -> ParenthesizedParameterData
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more
impl Eq for ParenthesizedParameterData
[src]
impl PartialEq for ParenthesizedParameterData
[src]
fn eq(&self, __arg_0: &ParenthesizedParameterData) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &ParenthesizedParameterData) -> bool
This method tests for !=
.