Struct std::raw::TraitObjectExperimental [-]  [+] [src]

pub struct TraitObject {
    pub data: *mut (),
    pub vtable: *mut (),
}

The representation of a Rust trait object.

This struct does not have a Repr implementation because there is no way to refer to all trait objects generically.

Fields

data
vtable

Trait Implementations

Derived Implementations

impl Copy for TraitObject