rustc_type_ir::inherent

Trait Region

Source
pub trait Region<I: Interner<Region = Self>>:
    Copy
    + Debug
    + Hash
    + Eq
    + Into<I::GenericArg>
    + IntoKind<Kind = RegionKind<I>>
    + Flags
    + Relate<I> {
    // Required methods
    fn new_bound(
        interner: I,
        debruijn: DebruijnIndex,
        var: I::BoundRegion,
    ) -> Self;
    fn new_anon_bound(
        interner: I,
        debruijn: DebruijnIndex,
        var: BoundVar,
    ) -> Self;
    fn new_static(interner: I) -> Self;

    // Provided method
    fn is_bound(self) -> bool { ... }
}

Required Methods§

Source

fn new_bound(interner: I, debruijn: DebruijnIndex, var: I::BoundRegion) -> Self

Source

fn new_anon_bound(interner: I, debruijn: DebruijnIndex, var: BoundVar) -> Self

Source

fn new_static(interner: I) -> Self

Provided Methods§

Source

fn is_bound(self) -> bool

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§