Struct rapier2d::pipeline::PairFilterContext[][src]

pub struct PairFilterContext<'a> {
    pub rigid_body1: &'a RigidBody,
    pub rigid_body2: &'a RigidBody,
    pub collider_handle1: ColliderHandle,
    pub collider_handle2: ColliderHandle,
    pub collider1: &'a Collider,
    pub collider2: &'a Collider,
}

Context given to custom collision filters to filter-out collisions.

Fields

rigid_body1: &'a RigidBody

The first collider involved in the potential collision.

rigid_body2: &'a RigidBody

The first collider involved in the potential collision.

collider_handle1: ColliderHandle

The first collider involved in the potential collision.

collider_handle2: ColliderHandle

The first collider involved in the potential collision.

collider1: &'a Collider

The first collider involved in the potential collision.

collider2: &'a Collider

The first collider involved in the potential collision.

Auto Trait Implementations

impl<'a> !RefUnwindSafe for PairFilterContext<'a>

impl<'a> Send for PairFilterContext<'a>

impl<'a> Sync for PairFilterContext<'a>

impl<'a> Unpin for PairFilterContext<'a>

impl<'a> !UnwindSafe for PairFilterContext<'a>

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> Pointable for T

type Init = T

The type for initializers.

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.