Trait shard_ecs::MutPointerTuple[][src]

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

    const LENGTH: u8;

    fn as_const_pointer_tuple(&self) -> Self::ConstPointerTuple;
}

Associated Types

Associated Constants

Required methods

Returns tuple as const pointer tuple.

Safety

  • Do not convert these pointers to mutable pointers.

Implementations on Foreign Types

Implementors