Enum rustc_lint::middle::cstore::InlinedItem [] [src]

pub enum InlinedItem {
    Item(P<Item>),
    TraitItem(DefIdP<TraitItem>),
    ImplItem(DefIdP<ImplItem>),
    Foreign(P<ForeignItem>),
}
Unstable (rustc_private)

The data we save and restore about an inlined item or method. This is not part of the AST that we parse from a file, but it becomes part of the tree that we trans.

Variants

Item(P<Item>)
Unstable (rustc_private)
TraitItem(DefIdP<TraitItem>)
Unstable (rustc_private)
ImplItem(DefIdP<ImplItem>)
Unstable (rustc_private)
Foreign(P<ForeignItem>)
Unstable (rustc_private)

Methods

impl InlinedItem

fn visit<'ast, V>(&'ast self, visitor: &mut V) where V: Visitor<'ast>

fn visit_ids<O>(&self, operation: &mut O) where O: IdVisitingOperation

Trait Implementations

Derived Implementations

impl Debug for InlinedItem

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

impl Hash for InlinedItem

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

impl Decodable for InlinedItem

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

impl Encodable for InlinedItem

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

impl Eq for InlinedItem

impl PartialEq<InlinedItem> for InlinedItem

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

This method tests for self and other values to be equal, and is used by ==. Read more

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

This method tests for !=.

impl Clone for InlinedItem

fn clone(&self) -> InlinedItem

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