[][src]Struct all_is_cubes::triangulator::BlockRenderData

pub struct BlockRenderData<V: From<BlockVertex>, A: TextureAllocator> { /* fields omitted */ }

Describes how to draw a block. Pass it to triangulate_space to use it.

Trait Implementations

impl<V: Clone + From<BlockVertex>, A: Clone + TextureAllocator> Clone for BlockRenderData<V, A> where
    A::Tile: Clone
[src]

impl<V: Debug + From<BlockVertex>, A: Debug + TextureAllocator> Debug for BlockRenderData<V, A> where
    A::Tile: Debug
[src]

impl<V: From<BlockVertex>, A: TextureAllocator> Default for BlockRenderData<V, A>[src]

impl<V: Eq + From<BlockVertex>, A: Eq + TextureAllocator> Eq for BlockRenderData<V, A> where
    A::Tile: Eq
[src]

impl<V: PartialEq + From<BlockVertex>, A: PartialEq + TextureAllocator> PartialEq<BlockRenderData<V, A>> for BlockRenderData<V, A> where
    A::Tile: PartialEq
[src]

impl<V: From<BlockVertex>, A: TextureAllocator> StructuralEq for BlockRenderData<V, A>[src]

impl<V: From<BlockVertex>, A: TextureAllocator> StructuralPartialEq for BlockRenderData<V, A>[src]

Auto Trait Implementations

impl<V, A> RefUnwindSafe for BlockRenderData<V, A> where
    V: RefUnwindSafe,
    <A as TextureAllocator>::Tile: RefUnwindSafe

impl<V, A> Send for BlockRenderData<V, A> where
    V: Send,
    <A as TextureAllocator>::Tile: Send

impl<V, A> Sync for BlockRenderData<V, A> where
    V: Sync,
    <A as TextureAllocator>::Tile: Sync

impl<V, A> Unpin for BlockRenderData<V, A> where
    V: Unpin,
    <A as TextureAllocator>::Tile: Unpin

impl<V, A> UnwindSafe for BlockRenderData<V, A> where
    V: UnwindSafe,
    <A as TextureAllocator>::Tile: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Erased for T[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,