[][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 PartialEq<PosTex> for PosTex[src]

impl Copy for PosTex[src]

impl Clone for PosTex[src]

impl AsVertex for PosTex[src]

impl PartialOrd<PosTex> for PosTex[src]

impl Debug for PosTex[src]

impl StructuralPartialEq for PosTex[src]

Auto Trait Implementations

impl Send for PosTex

impl Sync for PosTex

impl Unpin for PosTex

impl UnwindSafe for PosTex

impl RefUnwindSafe for PosTex

Blanket Implementations

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

impl<T> From<T> for 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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> AsVertex for T where
    T: AsAttribute
[src]