Enum syntax::ast::ExplicitSelf_Unstable [-] [+] [src]

pub enum ExplicitSelf_ {
    SelfStatic,
    SelfValue(Ident),
    SelfRegion(Option<Lifetime>, Mutability, Ident),
    SelfExplicit(P<Ty>, Ident),
}

Represents the kind of 'self' associated with a method

Variants

SelfStatic

No self

SelfValue

self

SelfRegion

&'lt self, &'lt mut self

SelfExplicit

self: TYPE

Trait Implementations

Derived Implementations

impl Debug for ExplicitSelf_

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

impl Hash for ExplicitSelf_

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

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

impl Decodable for ExplicitSelf_

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

impl Encodable for ExplicitSelf_

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

impl Eq for ExplicitSelf_

fn assert_receiver_is_total_eq(&self)

impl PartialEq for ExplicitSelf_

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

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

impl Clone for ExplicitSelf_

fn clone(&self) -> ExplicitSelf_

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