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

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

Variants

AngleBracketed

Fields

lifetimes
types
bindings
Parenthesized

Fields

inputs
output

Trait Implementations

impl Display for PathParameters

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

Derived Implementations

impl Debug for PathParameters

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

impl PartialEq for PathParameters

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

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

impl Decodable for PathParameters

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

impl Encodable for PathParameters

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

impl Clone for PathParameters

fn clone(&self) -> PathParameters

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