[][src]Struct ncollide_geometry::shape::ShapeHandle

pub struct ShapeHandle<P: Point, M> { /* fields omitted */ }

A shared immutable handle to an abstract shape.

Methods

impl<P: Point, M> ShapeHandle<P, M>[src]

pub fn new<S: Shape<P, M>>(shape: S) -> ShapeHandle<P, M>[src]

Creates a sharable shape handle from a shape.

Methods from Deref<Target = dyn Shape<P, M>>

pub fn is_shape<T: Shape<P, M>>(&self) -> bool[src]

Tests if this shape has a specific type T.

pub fn as_shape<T: Shape<P, M>>(&self) -> Option<&T>[src]

Performs the cast.

Trait Implementations

impl<P: Point, M> AsRef<dyn Shape<P, M> + 'static> for ShapeHandle<P, M>[src]

impl<P: Clone + Point, M: Clone> Clone for ShapeHandle<P, M>[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<P: Point, M> Deref for ShapeHandle<P, M>[src]

type Target = dyn Shape<P, M>

The resulting type after dereferencing.

Auto Trait Implementations

impl<P, M> Send for ShapeHandle<P, M>

impl<P, M> Sync for ShapeHandle<P, M>

Blanket Implementations

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto 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<SS, SP> SupersetOf for SP where
    SS: SubsetOf<SP>, 
[src]

impl<T> Same for T

type Output = T

Should always be Self