traitobject 0.0.2

Unsafe helpers for working with raw trait objects.
Documentation
#![cfg_attr(test, deny(warnings))]
#![deny(missing_docs)]

//! # traitobject
//!
//! Unsafe helpers for working with raw TraitObjects.

use std::mem;

/// Get the data pointer from this trait object.
///
/// Highly unsafe, as there is no information about the type of the data.
pub unsafe fn data<T: ?Sized>(val: *const T) -> *const () {
    *mem::transmute::<*const *const T, *const *const ()>(&val)
}

/// Get the data pointer from this trait object, mutably.
///
/// Highly unsafe, as there is no information about the type of the data.
pub unsafe fn data_mut<T: ?Sized>(mut val: *mut T) -> *mut () {
    *mem::transmute::<*mut *mut T, *mut *mut ()>(&mut val)
}

#[test]
fn test_simple() {
    let x = &7 as &Send;
    unsafe { assert!(&7 == mem::transmute::<_, &i32>(data(x))) };
}

/// A trait implemented for all trait objects.
///
/// Implementations for all traits in std are provided.
pub unsafe trait Trait {}

mod impls;