Struct syntax::ast::ParenthesizedParameterDataUnstable [-] [+] [src]

pub struct ParenthesizedParameterData {
    pub span: Span,
    pub inputs: Vec<P<Ty>>,
    pub output: Option<P<Ty>>,
}

A path like Foo(A,B) -> C

Fields

span

Overall span

inputs

(A,B)

output

C

Trait Implementations

Derived Implementations

impl Debug for ParenthesizedParameterData

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl Hash for ParenthesizedParameterData

fn hash<__H: Hasher>(&self, __arg_0: &mut __H)

fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher

impl Decodable for ParenthesizedParameterData

fn decode<__D: Decoder>(__arg_0: &mut __D) -> Result<ParenthesizedParameterData, Error>

impl Encodable for ParenthesizedParameterData

fn encode<__S: Encoder>(&self, __arg_0: &mut __S) -> Result<(), Error>

impl Eq for ParenthesizedParameterData

fn assert_receiver_is_total_eq(&self)

impl PartialEq for ParenthesizedParameterData

fn eq(&self, __arg_0: &ParenthesizedParameterData) -> bool

fn ne(&self, __arg_0: &ParenthesizedParameterData) -> bool

impl Clone for ParenthesizedParameterData

fn clone(&self) -> ParenthesizedParameterData

fn clone_from(&mut self, source: &Self)