//! # traitobject
//!
//! Unsafe helpers for working with raw TraitObjects.
use mem;
/// Get the data pointer from this trait object.
///
/// Highly unsafe, as there is no information about the type of the data.
pub unsafe Sized>
/// Get the data pointer from this trait object, mutably.
///
/// Highly unsafe, as there is no information about the type of the data.
pub unsafe Sized>
/// A trait implemented for all trait objects.
///
/// Implementations for all traits in std are provided.
pub unsafe