[][src]Enum box2d_rs::b2_joint::JointAsDerived

pub enum JointAsDerived<'a, D: UserDataType> {
    EDistanceJoint(&'a B2distanceJoint<D>),
    EFrictionJoint(&'a B2frictionJoint<D>),
    EGearJoint(&'a B2gearJoint<D>),
    EMouseJoint(&'a B2mouseJoint<D>),
    EMotorJoint(&'a B2motorJoint<D>),
    EPulleyJoint(&'a B2pulleyJoint<D>),
    ERevoluteJoint(&'a B2revoluteJoint<D>),
    ERopeJoint(&'a B2ropeJoint<D>),
    EPrismaticJoint(&'a B2prismaticJoint<D>),
    EWeldJoint(&'a B2weldJoint<D>),
    EWheelJoint(&'a B2wheelJoint<D>),
}

Variants

EDistanceJoint(&'a B2distanceJoint<D>)
EFrictionJoint(&'a B2frictionJoint<D>)
EGearJoint(&'a B2gearJoint<D>)
EMouseJoint(&'a B2mouseJoint<D>)
EMotorJoint(&'a B2motorJoint<D>)
EPulleyJoint(&'a B2pulleyJoint<D>)
ERevoluteJoint(&'a B2revoluteJoint<D>)
ERopeJoint(&'a B2ropeJoint<D>)
EPrismaticJoint(&'a B2prismaticJoint<D>)
EWeldJoint(&'a B2weldJoint<D>)
EWheelJoint(&'a B2wheelJoint<D>)

Auto Trait Implementations

impl<'a, D> !RefUnwindSafe for JointAsDerived<'a, D>

impl<'a, D> !Send for JointAsDerived<'a, D>

impl<'a, D> !Sync for JointAsDerived<'a, D>

impl<'a, D> Unpin for JointAsDerived<'a, D>

impl<'a, D> !UnwindSafe for JointAsDerived<'a, D>

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.