[][src]Enum box2d_rs::b2_joint::JointAsDerivedMut

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

Variants

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

Auto Trait Implementations

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

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

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

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

impl<'a, D> !UnwindSafe for JointAsDerivedMut<'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.