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

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

Convert a tuple or other type into Data.

Associated Types

The corresponding Data type.

Required methods

Performs the conversion.

Safety

Converts a tuple of references into NonNull. The lifetime is captures by Context

Implementations on Foreign Types

Implementors