[go: up one dir, main page]

traitobject 0.1.1

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.

/// 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 () {
    val as *const ()
}

/// 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>(val: *mut T) -> *mut () {
    val as *mut ()
}

#[test]
fn test_simple() {
    let x = &7 as &dyn Send;
    unsafe { assert!(&7 == std::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;