[][src]Struct abbegm::msg::EgmPose

pub struct EgmPose {
    pub pos: Option<EgmCartesian>,
    pub orient: Option<EgmQuaternion>,
    pub euler: Option<EgmEuler>,
}

Fields

pos: Option<EgmCartesian>orient: Option<EgmQuaternion>euler: Option<EgmEuler>

Implementations

impl EgmPose[src]

pub fn new(
    position: impl Into<EgmCartesian>,
    orientation: impl Into<EgmQuaternion>
) -> Self
[src]

Create a new 6-DOF pose from a position and orientation.

pub fn has_nan(&self) -> bool[src]

Check if any of the values are NaN.

Trait Implementations

impl Clone for EgmPose[src]

impl Debug for EgmPose[src]

impl Default for EgmPose[src]

impl<'_> From<&'_ Isometry<f64, U3, Unit<Quaternion<f64>>>> for EgmPose[src]

impl From<Isometry<f64, U3, Unit<Quaternion<f64>>>> for EgmPose[src]

impl Message for EgmPose[src]

impl PartialEq<EgmPose> for EgmPose[src]

impl StructuralPartialEq for EgmPose[src]

impl<'_> TryFrom<&'_ EgmPose> for Isometry3<f64>[src]

type Error = TryFromEgmPoseError

The type returned in the event of a conversion error.

impl TryFrom<EgmPose> for Isometry3<f64>[src]

type Error = Self::Error

The type returned in the event of a conversion error.

Auto Trait Implementations

impl RefUnwindSafe for EgmPose

impl Send for EgmPose

impl Sync for EgmPose

impl Unpin for EgmPose

impl UnwindSafe for EgmPose

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

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,