Trait shard_ecs::ConstPointerTuple[][src]

pub trait ConstPointerTuple: SealedConstPointerTuple {
    type Types;
    type MutPointerTuple: MutPointerTuple;

    const LENGTH: u8;

    fn as_mut_pointer_tuple(&self) -> Self::MutPointerTuple;
}

Associated Types

Associated Constants

Required methods

Returns tuple as mutable pointer tuple.

Safety

  • Do not invalidate aliasing rules unless you can guarantee it’s safe.

Implementations on Foreign Types

Implementors