[][src]Enum box2d_rs::b2_joint::B2JointDefEnum

pub enum B2JointDefEnum<D: UserDataType> {
    DistanceJoint(B2distanceJointDef<D>),
    FrictionJoint(B2frictionJointDef<D>),
    GearJoint(B2gearJointDef<D>),
    MouseJoint(B2mouseJointDef<D>),
    MotorJoint(B2motorJointDef<D>),
    PulleyJoint(B2pulleyJointDef<D>),
    RevoluteJoint(B2revoluteJointDef<D>),
    RopeJoint(B2ropeJointDef<D>),
    PrismaticJoint(B2prismaticJointDef<D>),
    WeldJoint(B2weldJointDef<D>),
    WheelJoint(B2wheelJointDef<D>),
}

Variants

DistanceJoint(B2distanceJointDef<D>)
FrictionJoint(B2frictionJointDef<D>)
GearJoint(B2gearJointDef<D>)
MouseJoint(B2mouseJointDef<D>)
MotorJoint(B2motorJointDef<D>)
PulleyJoint(B2pulleyJointDef<D>)
RevoluteJoint(B2revoluteJointDef<D>)
RopeJoint(B2ropeJointDef<D>)
PrismaticJoint(B2prismaticJointDef<D>)
WeldJoint(B2weldJointDef<D>)
WheelJoint(B2wheelJointDef<D>)

Auto Trait Implementations

impl<D> !RefUnwindSafe for B2JointDefEnum<D>

impl<D> !Send for B2JointDefEnum<D>

impl<D> !Sync for B2JointDefEnum<D>

impl<D> Unpin for B2JointDefEnum<D> where
    <D as UserDataType>::Joint: Unpin

impl<D> !UnwindSafe for B2JointDefEnum<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.