Struct mmd::pmx::morph::VertexOffset[][src]

pub struct VertexOffset<C: Config> {
    pub vertex: C::VertexIndex,
    pub offset: C::Vec3,
}

Fields

vertex: C::VertexIndexoffset: C::Vec3

Trait Implementations

impl<C: Clone + Config> Clone for VertexOffset<C> where
    C::VertexIndex: Clone,
    C::Vec3: Clone
[src]

impl<C: Copy + Config> Copy for VertexOffset<C> where
    C::VertexIndex: Copy,
    C::Vec3: Copy
[src]

impl<C: Debug + Config> Debug for VertexOffset<C> where
    C::VertexIndex: Debug,
    C::Vec3: Debug
[src]

impl<C: Config> Display for VertexOffset<C> where
    C::VertexIndex: Display,
    C::Vec3: Display
[src]

impl<C: PartialEq + Config> PartialEq<VertexOffset<C>> for VertexOffset<C> where
    C::VertexIndex: PartialEq,
    C::Vec3: PartialEq
[src]

impl<C: Config> StructuralPartialEq for VertexOffset<C>[src]

Auto Trait Implementations

impl<C> RefUnwindSafe for VertexOffset<C> where
    <C as Config>::Vec3: RefUnwindSafe,
    <C as Config>::VertexIndex: RefUnwindSafe
[src]

impl<C> Send for VertexOffset<C> where
    <C as Config>::Vec3: Send,
    <C as Config>::VertexIndex: Send
[src]

impl<C> Sync for VertexOffset<C> where
    <C as Config>::Vec3: Sync,
    <C as Config>::VertexIndex: Sync
[src]

impl<C> Unpin for VertexOffset<C> where
    <C as Config>::Vec3: Unpin,
    <C as Config>::VertexIndex: Unpin
[src]

impl<C> UnwindSafe for VertexOffset<C> where
    <C as Config>::Vec3: UnwindSafe,
    <C as Config>::VertexIndex: 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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.