Struct rustc::ty::TraitTy [] [src]

pub struct TraitTy<'tcx> {
    pub principal: PolyTraitRef<'tcx>,
    pub bounds: ExistentialBounds<'tcx>,
}
Unstable (rustc_private)

Fields

principal: PolyTraitRef<'tcx>
Unstable (rustc_private)
bounds: ExistentialBounds<'tcx>
Unstable (rustc_private)

Methods

impl<'a, 'gcx, 'tcx> TraitTy<'tcx>
[src]

fn principal_def_id(&self) -> DefId

fn principal_trait_ref_with_self_ty(&self, tcx: TyCtxt<'a, 'gcx, 'tcx>, self_ty: Ty<'tcx>) -> PolyTraitRef<'tcx>

Unstable (rustc_private)

Object types don't have a self-type specified. Therefore, when we convert the principal trait-ref into a normal trait-ref, you must give some self-type. A common choice is mk_err() or some skolemized type.

fn projection_bounds_with_self_ty(&self, tcx: TyCtxt<'a, 'gcx, 'tcx>, self_ty: Ty<'tcx>) -> Vec<PolyProjectionPredicate<'tcx>>

Trait Implementations

impl<'tcx> TypeFoldable<'tcx> for TraitTy<'tcx>
[src]

fn super_fold_with<'gcx: 'tcx, F: TypeFolder<'gcx, 'tcx>>(&self, folder: &mut F) -> Self

fn super_visit_with<V: TypeVisitor<'tcx>>(&self, visitor: &mut V) -> bool

fn fold_with<'gcx: 'tcx, F: TypeFolder<'gcx, 'tcx>>(&self, folder: &mut F) -> Self

fn visit_with<V: TypeVisitor<'tcx>>(&self, visitor: &mut V) -> bool

fn has_regions_escaping_depth(&self, depth: u32) -> bool

fn has_escaping_regions(&self) -> bool

fn has_type_flags(&self, flags: TypeFlags) -> bool

fn has_projection_types(&self) -> bool

fn references_error(&self) -> bool

fn has_param_types(&self) -> bool

fn has_self_ty(&self) -> bool

fn has_infer_types(&self) -> bool

fn needs_infer(&self) -> bool

fn needs_subst(&self) -> bool

fn has_closure_types(&self) -> bool

fn has_erasable_regions(&self) -> bool

fn is_global(&self) -> bool

Indicates whether this value references only 'global' types/lifetimes that are the same regardless of what fn we are in. This is used for caching. Errs on the side of returning false. Read more

impl<'tcx> Display for TraitTy<'tcx>
[src]

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

Formats the value using the given formatter.

impl<'tcx> Debug for TraitTy<'tcx>
[src]

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

Formats the value using the given formatter.

Derived Implementations

impl<'tcx> Hash for TraitTy<'tcx>
[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<'tcx> Eq for TraitTy<'tcx>
[src]

impl<'tcx> PartialEq for TraitTy<'tcx>
[src]

fn eq(&self, __arg_0: &TraitTy<'tcx>) -> bool

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

fn ne(&self, __arg_0: &TraitTy<'tcx>) -> bool

This method tests for !=.

impl<'tcx> Clone for TraitTy<'tcx>
[src]

fn clone(&self) -> TraitTy<'tcx>

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