Enum parry3d::query::TypedWorkspaceData[][src]

pub enum TypedWorkspaceData<'a> {
    TriMeshShapeContactManifoldsWorkspace(&'a TriMeshShapeContactManifoldsWorkspace),
    HeightfieldShapeContactManifoldsWorkspace(&'a HeightFieldShapeContactManifoldsWorkspace),
    HeightfieldCompositeShapeContactManifoldsWorkspace(&'a HeightFieldCompositeShapeContactManifoldsWorkspace),
    CompositeShapeCompositeShapeContactManifoldsWorkspace(&'a CompositeShapeCompositeShapeContactManifoldsWorkspace),
    CompositeShapeShapeContactManifoldsWorkspace(&'a CompositeShapeShapeContactManifoldsWorkspace),
    Custom(u32),
}

Enum representing workspace data of a specific type.

Variants

TriMeshShapeContactManifoldsWorkspace(&'a TriMeshShapeContactManifoldsWorkspace)

A trimesh workspace.

HeightfieldShapeContactManifoldsWorkspace(&'a HeightFieldShapeContactManifoldsWorkspace)

A heightfield vs. shape workspace.

HeightfieldCompositeShapeContactManifoldsWorkspace(&'a HeightFieldCompositeShapeContactManifoldsWorkspace)

A heightfield vs. composite shape workspace.

CompositeShapeCompositeShapeContactManifoldsWorkspace(&'a CompositeShapeCompositeShapeContactManifoldsWorkspace)

A composite shape vs. composite shape workspace.

CompositeShapeShapeContactManifoldsWorkspace(&'a CompositeShapeShapeContactManifoldsWorkspace)

A composite shape vs. shape workspace.

Custom(u32)

A custom workspace.

Trait Implementations

impl<'a> Clone for TypedWorkspaceData<'a>[src]

impl<'a> Copy for TypedWorkspaceData<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for TypedWorkspaceData<'a>

impl<'a> Send for TypedWorkspaceData<'a>

impl<'a> Sync for TypedWorkspaceData<'a>

impl<'a> Unpin for TypedWorkspaceData<'a>

impl<'a> UnwindSafe for TypedWorkspaceData<'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> 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> 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.