Struct mmd::pmx::vertex::Vertex[][src]

pub struct Vertex<C: Config> {
    pub position: C::Vec3,
    pub normal: C::Vec3,
    pub uv: C::Vec2,
    pub additional: C::AdditionalVec4s,
    pub weight_deform: WeightDeform<C>,
    pub edge_scale: f32,
}

Fields

position: C::Vec3normal: C::Vec3uv: C::Vec2additional: C::AdditionalVec4sweight_deform: WeightDeform<C>edge_scale: f32

Auto Trait Implementations

impl<C> RefUnwindSafe for Vertex<C> where
    <C as Config>::AdditionalVec4s: RefUnwindSafe,
    <C as Config>::BoneIndex: RefUnwindSafe,
    <C as Config>::Vec2: RefUnwindSafe,
    <C as Config>::Vec3: RefUnwindSafe
[src]

impl<C> Send for Vertex<C> where
    <C as Config>::AdditionalVec4s: Send,
    <C as Config>::BoneIndex: Send,
    <C as Config>::Vec2: Send,
    <C as Config>::Vec3: Send
[src]

impl<C> Sync for Vertex<C> where
    <C as Config>::AdditionalVec4s: Sync,
    <C as Config>::BoneIndex: Sync,
    <C as Config>::Vec2: Sync,
    <C as Config>::Vec3: Sync
[src]

impl<C> Unpin for Vertex<C> where
    <C as Config>::AdditionalVec4s: Unpin,
    <C as Config>::BoneIndex: Unpin,
    <C as Config>::Vec2: Unpin,
    <C as Config>::Vec3: Unpin
[src]

impl<C> UnwindSafe for Vertex<C> where
    <C as Config>::AdditionalVec4s: UnwindSafe,
    <C as Config>::BoneIndex: UnwindSafe,
    <C as Config>::Vec2: UnwindSafe,
    <C as Config>::Vec3: UnwindSafe
[src]

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> From<T> for T[src]

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

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.