Enum syntax::ast::SelfKind  [−][src]
pub enum SelfKind {
    Value(Mutability),
    Region(Option<Lifetime>, Mutability),
    Explicit(P<Ty>, Mutability),
}Alternative representation for Args describing self parameter of methods.
E.g. &mut self as in fn foo(&mut self)
Variants
Value(Mutability)self, mut self
Region(Option<Lifetime>, Mutability)&'lt self, &'lt mut self
Explicit(P<Ty>, Mutability)self: TYPE, mut self: TYPE
Trait Implementations
impl Clone for SelfKind[src] 
impl Clone for SelfKindfn clone(&self) -> SelfKind[src] 
fn clone(&self) -> SelfKindReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src] 
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl PartialEq for SelfKind[src] 
impl PartialEq for SelfKindfn eq(&self, other: &SelfKind) -> bool[src] 
fn eq(&self, other: &SelfKind) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &SelfKind) -> bool[src] 
fn ne(&self, other: &SelfKind) -> boolThis method tests for !=.
impl Eq for SelfKind[src] 
impl Eq for SelfKindimpl Encodable for SelfKind[src] 
impl Encodable for SelfKindimpl Decodable for SelfKind[src] 
impl Decodable for SelfKindimpl Hash for SelfKind[src] 
impl Hash for SelfKindfn hash<__H: Hasher>(&self, state: &mut __H)[src] 
fn hash<__H: Hasher>(&self, state: &mut __H)Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher, 1.3.0[src] 
fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher, 1.3.0
[src]Feeds a slice of this type into the given [Hasher]. Read more
impl Debug for SelfKind[src] 
impl Debug for SelfKind