[][src]Struct physme::dim3::Size3

pub struct Size3 {
    pub width: f32,
    pub height: f32,
    pub depth: f32,
}

The three dimensional size of a Shape

Fields

width: f32height: f32depth: f32

Implementations

impl Size3[src]

pub fn new(width: f32, height: f32, depth: f32) -> Self[src]

Returns a new 3d size.

Trait Implementations

impl Clone for Size3[src]

impl Copy for Size3[src]

impl Debug for Size3[src]

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

impl DeserializeProperty for Size3[src]

impl From<Size3> for Shape[src]

impl PartialEq<Size3> for Size3[src]

impl Property for Size3[src]

impl Serialize for Size3[src]

impl StructuralPartialEq for Size3[src]

Auto Trait Implementations

impl RefUnwindSafe for Size3

impl Send for Size3

impl Sync for Size3

impl Unpin for Size3

impl UnwindSafe for Size3

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