Struct rustc::hir::map::blocks::FnLikeNode
[−]
[src]
pub struct FnLikeNode<'a> { // some fields omitted }
Unstable (
rustc_private
)An FnLikeNode is a Node that is like a fn, in that it has a decl and a body (as well as a NodeId, a span, etc).
More specifically, it is one of either: - A function item, - A closure expr (i.e. an ExprClosure), or - The default implementation for a trait method.
To construct one, use the Code::from_node
function.
Methods
impl<'a> FnLikeNode<'a>
[src]
fn from_node(node: Node) -> Option<FnLikeNode>
Unstable (
rustc_private
)Attempts to construct a FnLikeNode from presumed FnLike node input.
fn to_fn_parts(self) -> FnParts<'a>
fn body(self) -> &'a Block
fn decl(self) -> &'a FnDecl
fn span(self) -> Span
fn id(self) -> NodeId
fn kind(self) -> FnKind<'a>
Trait Implementations
Derived Implementations
impl<'a> Clone for FnLikeNode<'a>
[src]
fn clone(&self) -> FnLikeNode<'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