Enum rustc::hir::intravisit::FnKind
[−]
[src]
pub enum FnKind<'a> { ItemFn(Name, &'a Generics, Unsafety, Constness, Abi, &'a Visibility, &'a [Attribute]), Method(Name, &'a MethodSig, Option<&'a Visibility>, &'a [Attribute]), Closure(&'a [Attribute]), }
Unstable (
rustc_private
)Variants
ItemFn(Name, &'a Generics, Unsafety, Constness, Abi, &'a Visibility, &'a [Attribute])
Unstable (
rustc_private
)fn foo() or extern "Abi" fn foo()
Method(Name, &'a MethodSig, Option<&'a Visibility>, &'a [Attribute])
Unstable (
rustc_private
)fn foo(&self)
Closure(&'a [Attribute])
Unstable (
rustc_private
)|x, y| {}
Methods
impl<'a> FnKind<'a>
[src]
Trait Implementations
Derived Implementations
impl<'a> Eq for FnKind<'a>
[src]
impl<'a> PartialEq for FnKind<'a>
[src]
fn eq(&self, __arg_0: &FnKind<'a>) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &FnKind<'a>) -> bool
This method tests for !=
.
impl<'a> Clone for FnKind<'a>
[src]
fn clone(&self) -> FnKind<'a>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more