Trait hecs_schedule::context::IntoData[][src]

pub trait IntoData: Send + Sync {
    type Target: Data;
    unsafe fn into_data(self) -> Self::Target;
}
Expand description

Convert a tuple or other type into Data.

Associated Types

The corresponding Data type.

Required methods

Performs the conversion.

Implementations on Foreign Types

Implementors