[][src]Struct motion_planning::Pose

pub struct Pose<V> {
    pub position: V,
    pub velocity: V,
    pub acceleration: V,
}

Fields

position: Vvelocity: Vacceleration: V

Trait Implementations

impl<V: Debug> Debug for Pose<V>[src]

impl<V: PartialEq> PartialEq<Pose<V>> for Pose<V>[src]

impl<V> StructuralPartialEq for Pose<V>[src]

Auto Trait Implementations

impl<V> RefUnwindSafe for Pose<V> where
    V: RefUnwindSafe

impl<V> Send for Pose<V> where
    V: Send

impl<V> Sync for Pose<V> where
    V: Sync

impl<V> Unpin for Pose<V> where
    V: Unpin

impl<V> UnwindSafe for Pose<V> where
    V: 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, 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.