Struct heron::rapier_plugin::rapier::ncollide::pipeline::CollisionObjectSlab[][src]

pub struct CollisionObjectSlab<N, T> where
    N: RealField
{ /* fields omitted */ }

A set of collision objects that can be indexed by collision object handles.

Implementations

impl<N, T> CollisionObjectSlab<N, T> where
    N: RealField
[src]

pub fn new() -> CollisionObjectSlab<N, T>[src]

Creates a new empty collection of collision objects.

pub fn with_capacity(capacity: usize) -> CollisionObjectSlab<N, T>[src]

Constructs a new empty collection with the specified capacity.

pub fn insert(&mut self, co: CollisionObject<N, T>) -> CollisionObjectSlabHandle[src]

Inserts a new collision object into this collection and returns the corresponding handle.

pub fn remove(
    &mut self,
    handle: CollisionObjectSlabHandle
) -> CollisionObject<N, T>
[src]

Removes from this collection the collision object identified by the given handle.

The removed collision object structure is returned.

pub fn get(
    &self,
    handle: CollisionObjectSlabHandle
) -> Option<&CollisionObject<N, T>>
[src]

If it exists, retrieves a reference to the collision object identified by the given handle.

pub fn get_mut(
    &mut self,
    handle: CollisionObjectSlabHandle
) -> Option<&mut CollisionObject<N, T>>
[src]

If it exists, retrieves a mutable reference to the collision object identified by the given handle.

pub fn get_pair_mut(
    &mut self,
    handle1: CollisionObjectSlabHandle,
    handle2: CollisionObjectSlabHandle
) -> (Option<&mut CollisionObject<N, T>>, Option<&mut CollisionObject<N, T>>)
[src]

If they exists, retrieves a mutable reference to the two collision object identified by the given handles.

Panics if both handles are equal.

pub fn contains(&self, handle: CollisionObjectSlabHandle) -> bool[src]

Returns true if the specified handle identifies a collision object stored in this collection.

pub fn iter(&self) -> CollisionObjects<'_, N, T>

Notable traits for CollisionObjects<'a, N, T>

impl<'a, N, T> Iterator for CollisionObjects<'a, N, T> where
    T: 'a,
    N: 'a + RealField
type Item = (CollisionObjectSlabHandle, &'a CollisionObject<N, T>);
[src]

Retrieves an iterator yielding references to each collision object.

pub fn iter_mut(&mut self) -> CollisionObjectsMut<'_, N, T>[src]

Retrieves an iterator yielding references to each collision object.

pub fn len(&self) -> usize[src]

The number of collision objects on this slab.

pub fn capacity(&self) -> usize[src]

Return the number of values the slab can store without reallocating.

pub fn reserve(&mut self, additional: usize)[src]

Reserve capacity for at least additional more values to be stored without allocating.

pub fn reserve_exact(&mut self, additional: usize)[src]

Reserve the minimum capacity required to store exactly additional more values.

Trait Implementations

impl<N, T> CollisionObjectSet<N> for CollisionObjectSlab<N, T> where
    N: RealField
[src]

type CollisionObject = CollisionObject<N, T>

Type of the collision object stored into this set.

type CollisionObjectHandle = CollisionObjectSlabHandle

Type of the handles identifying collision objects.

impl<N, T> Index<CollisionObjectSlabHandle> for CollisionObjectSlab<N, T> where
    N: RealField
[src]

type Output = CollisionObject<N, T>

The returned type after indexing.

impl<N, T> IndexMut<CollisionObjectSlabHandle> for CollisionObjectSlab<N, T> where
    N: RealField
[src]

Auto Trait Implementations

impl<N, T> !RefUnwindSafe for CollisionObjectSlab<N, T>[src]

impl<N, T> Send for CollisionObjectSlab<N, T> where
    T: Send
[src]

impl<N, T> Sync for CollisionObjectSlab<N, T> where
    T: Sync
[src]

impl<N, T> Unpin for CollisionObjectSlab<N, T> where
    N: Unpin,
    T: Unpin
[src]

impl<N, T> !UnwindSafe for CollisionObjectSlab<N, T>[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Any for T where
    T: Any

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Component for T where
    T: 'static + Send + Sync

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> Instrument 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> Resource for T where
    T: 'static + Send + Sync

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>,