Enum rustc::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
[src]

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

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

Trait Implementations

Derived Implementations

impl Debug for InlinedItem
[src]

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

Formats the value using the given formatter.

impl Hash for InlinedItem
[src]

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

Feeds this value into the state given, updating the hasher as necessary.

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

Feeds a slice of this type into the state provided.

impl Decodable for InlinedItem
[src]

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

impl Encodable for InlinedItem
[src]

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

impl Eq for InlinedItem
[src]

impl PartialEq for InlinedItem
[src]

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
[src]

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