Trait bwapi::from_raw::FromRaw[][src]

pub trait FromRaw {
    unsafe fn from_raw(raw: *mut void) -> Self;
}

FromRaw is a trait for entities that are typically created outside of Rust code.

Required Methods

Construct entity from raw data. Unsafe. Please be 100% sure that you pass correct pointer.

Implementors