Struct parry3d::query::details::CompositeShapeAgainstAnyDistanceVisitor[][src]

pub struct CompositeShapeAgainstAnyDistanceVisitor<'a, D: ?Sized, G1: ?Sized + 'a> { /* fields omitted */ }

A visitor for computing the distance between a composite shape and a shape.

Implementations

impl<'a, D: ?Sized, G1: ?Sized + 'a> CompositeShapeAgainstAnyDistanceVisitor<'a, D, G1>[src]

pub fn new(
    dispatcher: &'a D,
    pos12: &'a Isometry<Real>,
    g1: &'a G1,
    g2: &'a dyn Shape
) -> Self
[src]

Initialize a visitor for computing the distance between a composite shape and a shape.

Trait Implementations

impl<'a, D: ?Sized, G1: ?Sized> SimdBestFirstVisitor<<G1 as TypedSimdCompositeShape>::PartId, SimdAABB> for CompositeShapeAgainstAnyDistanceVisitor<'a, D, G1> where
    D: QueryDispatcher,
    G1: TypedSimdCompositeShape
[src]

type Result = (G1::PartId, Real)

The result of a best-first traversal.

Auto Trait Implementations

impl<'a, D, G1> !RefUnwindSafe for CompositeShapeAgainstAnyDistanceVisitor<'a, D, G1>

impl<'a, D: ?Sized, G1: ?Sized> Send for CompositeShapeAgainstAnyDistanceVisitor<'a, D, G1> where
    D: Sync,
    G1: Sync

impl<'a, D: ?Sized, G1: ?Sized> Sync for CompositeShapeAgainstAnyDistanceVisitor<'a, D, G1> where
    D: Sync,
    G1: Sync

impl<'a, D: ?Sized, G1: ?Sized> Unpin for CompositeShapeAgainstAnyDistanceVisitor<'a, D, G1>

impl<'a, D, G1> !UnwindSafe for CompositeShapeAgainstAnyDistanceVisitor<'a, D, G1>

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
[src]

impl<T> DowncastSync for T where
    T: Any + Send + Sync
[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>, 
[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.