Enum rustc_hir::Target

source ·
pub enum Target {
Show 33 variants ExternCrate, Use, Static, Const, Fn, Closure, Mod, ForeignMod, GlobalAsm, TyAlias, OpaqueTy, Enum, Variant, Struct, Field, Union, Trait, TraitAlias, Impl, Expression, Statement, Arm, AssocConst, Method(MethodKind), AssocTy, ForeignFn, ForeignStatic, ForeignTy, GenericParam(GenericParamKind), MacroDef, Param, PatField, ExprField,
}

Variants§

§

ExternCrate

§

Use

§

Static

§

Const

§

Fn

§

Closure

§

Mod

§

ForeignMod

§

GlobalAsm

§

TyAlias

§

OpaqueTy

§

Enum

§

Variant

§

Struct

§

Field

§

Union

§

Trait

§

TraitAlias

§

Impl

§

Expression

§

Statement

§

Arm

§

AssocConst

§

Method(MethodKind)

§

AssocTy

§

ForeignFn

§

ForeignStatic

§

ForeignTy

§

GenericParam(GenericParamKind)

§

MacroDef

§

Param

§

PatField

§

ExprField

Implementations§

source§

impl Target

source

pub fn is_associated_item(self) -> bool

source

pub fn from_item(item: &Item<'_>) -> Target

source

pub fn from_def_kind(def_kind: DefKind) -> Target

source

pub fn from_trait_item(trait_item: &TraitItem<'_>) -> Target

source

pub fn from_foreign_item(foreign_item: &ForeignItem<'_>) -> Target

source

pub fn from_generic_param(generic_param: &GenericParam<'_>) -> Target

source

pub fn name(self) -> &'static str

Trait Implementations§

source§

impl Clone for Target

source§

fn clone(&self) -> Target

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Target

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Target

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq for Target

source§

fn eq(&self, other: &Target) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for Target

source§

impl StructuralPartialEq for Target

Auto Trait Implementations§

§

impl Freeze for Target

§

impl RefUnwindSafe for Target

§

impl Send for Target

§

impl Sync for Target

§

impl Unpin for Target

§

impl UnwindSafe for Target

Blanket Implementations§

source§

impl<T> Aligned for T

source§

const ALIGN: Alignment = _

Alignment of Self.
source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for T
where T: Copy,

source§

fn allocate_on<'a>(self, arena: &'a Arena<'tcx>) -> &'a mut T

source§

fn allocate_from_iter<'a>( arena: &'a Arena<'tcx>, iter: impl IntoIterator<Item = T> ) -> &'a mut [T]

source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<'a, T> Captures<'a> for T
where T: ?Sized,

Layout§

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.

Size: 2 bytes

Size for each variant:

  • ExternCrate: 0 bytes
  • Use: 0 bytes
  • Static: 0 bytes
  • Const: 0 bytes
  • Fn: 0 bytes
  • Closure: 0 bytes
  • Mod: 0 bytes
  • ForeignMod: 0 bytes
  • GlobalAsm: 0 bytes
  • TyAlias: 0 bytes
  • OpaqueTy: 0 bytes
  • Enum: 0 bytes
  • Variant: 0 bytes
  • Struct: 0 bytes
  • Field: 0 bytes
  • Union: 0 bytes
  • Trait: 0 bytes
  • TraitAlias: 0 bytes
  • Impl: 0 bytes
  • Expression: 0 bytes
  • Statement: 0 bytes
  • Arm: 0 bytes
  • AssocConst: 0 bytes
  • Method: 1 byte
  • AssocTy: 0 bytes
  • ForeignFn: 0 bytes
  • ForeignStatic: 0 bytes
  • ForeignTy: 0 bytes
  • GenericParam: 1 byte
  • MacroDef: 0 bytes
  • Param: 0 bytes
  • PatField: 0 bytes
  • ExprField: 0 bytes