Enum rapier2d::dynamics::JointParams[][src]

pub enum JointParams {
    BallJoint(BallJoint),
    FixedJoint(FixedJoint),
    PrismaticJoint(PrismaticJoint),
}

An enum grouping all possible types of joints.

Variants

BallJoint(BallJoint)

A Ball joint that removes all relative linear degrees of freedom between the affected bodies.

FixedJoint(FixedJoint)

A fixed joint that removes all relative degrees of freedom between the affected bodies.

PrismaticJoint(PrismaticJoint)

A prismatic joint that removes all degrees of degrees of freedom between the affected bodies except for the translation along one axis.

Implementations

impl JointParams[src]

pub fn type_id(&self) -> usize[src]

An integer identifier for each type of joint.

pub fn as_ball_joint(&self) -> Option<&BallJoint>[src]

Gets a reference to the underlying ball joint, if self is one.

pub fn as_fixed_joint(&self) -> Option<&FixedJoint>[src]

Gets a reference to the underlying fixed joint, if self is one.

pub fn as_prismatic_joint(&self) -> Option<&PrismaticJoint>[src]

Gets a reference to the underlying prismatic joint, if self is one.

Trait Implementations

impl Clone for JointParams[src]

impl Copy for JointParams[src]

impl From<BallJoint> for JointParams[src]

impl From<FixedJoint> for JointParams[src]

impl From<PrismaticJoint> for JointParams[src]

Auto Trait Implementations

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> Downcast for T where
    T: Any
[src]

impl<T> DowncastSync for T where
    T: Any + Send + Sync
[src]

impl<T> From<T> for T[src]

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

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.