Enum rustdoc::clean::PathParametersExperimental [-]  [+] [src]

pub enum PathParameters {
    AngleBracketed {
        lifetimes: Vec<Lifetime>,
        types: Vec<Type>,
    },
    Parenthesized {
        inputs: Vec<Type>,
        output: Option<Type>,
    },
}

Variants

AngleBracketed

Fields

lifetimes
types
Parenthesized

Fields

inputs
output

Trait Implementations

impl Show for PathParameters

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

Derived Implementations

impl PartialEq for PathParameters

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

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

impl<__D: Decoder<__E>, __E> Decodable<__D, __E> for PathParameters

fn decode(__arg_0: &mut __D) -> Result<PathParameters, __E>

impl<__S: Encoder<__E>, __E> Encodable<__S, __E> for PathParameters

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

impl Clone for PathParameters

fn clone(&self) -> PathParameters

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