Enum skelly::ik::StepResult[][src]

pub enum StepResult {
    Solved,
    Unsolved,
    Infeasible,
}

Variants of results for IkSolver::solve_step method.

Variants

Solved

All constrains and goals are satisfied with error less than configured for solver.

Unsolved

Error in constraints and goals are unsatisfied

Infeasible

Returned if solver determined that goals cannot be satisfied given the constraitns.

Trait Implementations

impl Clone for StepResult[src]

impl Copy for StepResult[src]

impl Debug for StepResult[src]

impl Eq for StepResult[src]

impl Hash for StepResult[src]

impl PartialEq<StepResult> for StepResult[src]

impl StructuralEq for StepResult[src]

impl StructuralPartialEq for StepResult[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> 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<T> Scalar for T where
    T: Copy + PartialEq<T> + Debug + Any
[src]

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.