Trait owning_ref::IntoErased [−][src]
pub unsafe trait IntoErased<'a> {
type Erased;
fn into_erased(self) -> Self::Erased;
}Helper trait for erasing the concrete type of what an owner derferences to,
for example Box<T> -> Box<dyn Erased>. This would be unneeded with
higher kinded types support in the language.
Associated Types
Loading content...Required methods
fn into_erased(self) -> Self::Erased[src]
Perform the type erasure.
Implementations on Foreign Types
impl<'a, T: 'a> IntoErased<'a> for Box<T>[src]
impl<'a, T: 'a> IntoErased<'a> for Box<T>[src]impl<'a, T: 'a> IntoErased<'a> for Rc<T>[src]
impl<'a, T: 'a> IntoErased<'a> for Rc<T>[src]impl<'a, T: 'a> IntoErased<'a> for Arc<T>[src]
impl<'a, T: 'a> IntoErased<'a> for Arc<T>[src]