Trait rustc_data_structures::owning_ref::IntoErasedSendSync [−][src]
pub unsafe trait IntoErasedSendSync<'a> {
type Erased: Send + Sync;
fn into_erased_send_sync(self) -> Self::Erased;
}Helper trait for erasing the concrete type of what an owner dereferences to,
for example Box<T> -> Box<Erased + Send + Sync>. This would be unneeded with
higher kinded types support in the language.
Associated Types
Required Methods
fn into_erased_send_sync(self) -> Self::Erased
Perform the type erasure.
Implementations on Foreign Types
impl<'a, T: Send + 'a> IntoErasedSendSync<'a> for Box<T>[src]
impl<'a, T: Send + 'a> IntoErasedSendSync<'a> for Box<T>impl<'a, T: Send + Sync + 'a> IntoErasedSendSync<'a> for Arc<T>[src]
impl<'a, T: Send + Sync + 'a> IntoErasedSendSync<'a> for Arc<T>