[][src]Struct k::node::NodeImpl

pub struct NodeImpl<T> where
    T: RealField
{ pub parent: Option<Weak<RefCell<NodeImpl<T>>>>, pub children: Vec<Node<T>>, pub joint: Joint<T>, pub mimic_parent: Option<Weak<RefCell<NodeImpl<T>>>>, pub mimic_children: Vec<Node<T>>, pub mimic: Option<Mimic<T>>, pub link: Option<Link<T>>, }

Node for joint tree struct

Fields

parent: Option<Weak<RefCell<NodeImpl<T>>>>children: Vec<Node<T>>joint: Joint<T>mimic_parent: Option<Weak<RefCell<NodeImpl<T>>>>mimic_children: Vec<Node<T>>mimic: Option<Mimic<T>>link: Option<Link<T>>

Trait Implementations

impl<T: Debug> Debug for NodeImpl<T> where
    T: RealField
[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for NodeImpl<T>

impl<T> !Send for NodeImpl<T>

impl<T> !Sync for NodeImpl<T>

impl<T> Unpin for NodeImpl<T> where
    T: Scalar + Unpin

impl<T> !UnwindSafe for NodeImpl<T>

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

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.