[][src]Struct gear::collision::SelfCollisionPairs

pub struct SelfCollisionPairs<'a, T> where
    T: RealField, 
{ /* fields omitted */ }

Check collision inside robot links (self collision checker)

Implementations

impl<'a, T> SelfCollisionPairs<'a, T> where
    T: RealField + SubsetOf<f64>, 
[src]

pub fn new(
    checker: &'a CollisionChecker<T>,
    collision_check_robot: &'a Chain<T>,
    self_collision_pairs: &'a [(String, String)]
) -> Self
[src]

pub fn used_duration(&self) -> &HashMap<String, Duration>[src]

Get the information about which part is the most heaviest.

Trait Implementations

impl<'a, T> Iterator for SelfCollisionPairs<'a, T> where
    T: RealField + SubsetOf<f64>, 
[src]

type Item = (String, String)

The type of the elements being iterated over.

Auto Trait Implementations

impl<'a, T> !RefUnwindSafe for SelfCollisionPairs<'a, T>[src]

impl<'a, T> Send for SelfCollisionPairs<'a, T> where
    T: Scalar
[src]

impl<'a, T> Sync for SelfCollisionPairs<'a, T> where
    T: Scalar
[src]

impl<'a, T> Unpin for SelfCollisionPairs<'a, T>[src]

impl<'a, T> !UnwindSafe for SelfCollisionPairs<'a, T>[src]

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> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Send + Sync + Any

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<I> IteratorRandom for I where
    I: Iterator
[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.

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