Struct k::link::Link[][src]

pub struct Link<T: RealField> {
    pub name: String,
    pub inertial: Inertial<T>,
    pub visuals: Vec<Visual<T>>,
    pub collisions: Vec<Collision<T>>,
}

Fields

name: Stringinertial: Inertial<T>visuals: Vec<Visual<T>>collisions: Vec<Collision<T>>

Trait Implementations

impl<T: Clone + RealField> Clone for Link<T>[src]

impl<T: Debug + RealField> Debug for Link<T>[src]

impl<T> Default for Link<T> where
    T: RealField
[src]

impl<T> From<Link> for Link<T> where
    T: RealField
[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Link<T> where
    T: RefUnwindSafe

impl<T> Send for Link<T>

impl<T> Sync for Link<T>

impl<T> Unpin for Link<T> where
    T: Unpin

impl<T> UnwindSafe for Link<T> where
    T: UnwindSafe

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> 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.