[][src]Trait rustc_data_structures::owning_ref::IntoErased

pub unsafe trait IntoErased<'a> {
    type Erased;
    fn into_erased(self) -> Self::Erased;
}

Helper trait for erasing the concrete type of what an owner dereferences to, for example Box<T> -> Box<Erased>. This would be unneeded with higher kinded types support in the language.

Associated Types

type Erased

Owner with the dereference type substituted to Erased.

Loading content...

Required methods

fn into_erased(self) -> Self::Erased

Performs the type erasure.

Loading content...

Implementations on Foreign Types

impl<'a, T: 'a> IntoErased<'a> for Box<T>[src]

type Erased = Box<dyn Erased + 'a>

impl<'a, T: 'a> IntoErased<'a> for Arc<T>[src]

type Erased = Arc<dyn Erased + 'a>

Loading content...

Implementors

impl<'a, T: 'a> IntoErased<'a> for Rc<T>[src]

type Erased = Rc<dyn Erased + 'a>

Loading content...