[][src]Struct rendy_mesh::PosTex

#[repr(C)]
pub struct PosTex { pub position: Position, pub tex_coord: TexCoord, }

Vertex format with position and UV texture coordinate attributes.

Fields

position: Position

Position of the vertex in 3D space.

tex_coord: TexCoord

UV texture coordinates used by the vertex.

Trait Implementations

impl AsVertex for PosTex[src]

fn attribute<F>() -> Attribute where
    F: AsAttribute,
    Self: WithAttribute<F>, 
[src]

Returns attribute of vertex by type

impl WithAttribute<Position> for PosTex[src]

impl WithAttribute<TexCoord> for PosTex[src]

impl Clone for PosTex[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for PosTex[src]

impl PartialOrd<PosTex> for PosTex[src]

impl PartialEq<PosTex> for PosTex[src]

impl Debug for PosTex[src]

Auto Trait Implementations

impl Send for PosTex

impl Sync for PosTex

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> Supports for T[src]

impl<T> Erased for T