[][src]Struct physme::dim2::Shape

pub struct Shape { /* fields omitted */ }

The shape of a rigid body.

Contains a rotation/translation offset and a size.

Implementations

impl Shape[src]

pub fn new(size: Size2) -> Self[src]

Return a new Shape with a zero offset and a size.

pub fn with_offset(self, offset: Vec2) -> Self[src]

Return a new Shape with an offset and a size.

Trait Implementations

impl Clone for Shape[src]

impl Copy for Shape[src]

impl Debug for Shape[src]

impl<'de> Deserialize<'de> for Shape[src]

impl DeserializeProperty for Shape[src]

impl From<Size2> for Shape[src]

impl PartialEq<Shape> for Shape[src]

impl Properties for Shape[src]

impl Property for Shape[src]

impl Serialize for Shape[src]

impl StructuralPartialEq for Shape[src]

Auto Trait Implementations

impl RefUnwindSafe for Shape

impl Send for Shape

impl Sync for Shape

impl Unpin for Shape

impl UnwindSafe for Shape

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> CloneAny for T where
    T: Clone + Any

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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<P> PropertiesVal for P where
    P: Properties, 

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Serialize for T where
    T: Serialize + ?Sized
[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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,