Enum rustc_typeck::middle::cstore::InlinedItem   
                   
                       [−]
                   
               [src]
pub enum InlinedItem {
    Item(P<Item>),
    TraitItem(DefId, P<TraitItem>),
    ImplItem(DefId, P<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(DefId, P<TraitItem>)Unstable (
rustc_private)ImplItem(DefId, P<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>
Formats the value using the given formatter.
impl Hash for InlinedItem
fn hash<__H>(&self, __arg_0: &mut __H) where __H: Hasher
Feeds this value into the state given, updating the hasher as necessary.
fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher1.3.0
Feeds a slice of this type into the state provided.
impl Decodable for InlinedItem
fn decode<__D>(__arg_0: &mut __D) -> Result<InlinedItem, __D::Error> where __D: Decoder
impl Encodable for InlinedItem
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