[][src]Struct myelin_engine::object::ObjectDescription

#[non_exhaustive]
pub struct ObjectDescription { pub shape: Polygon, pub location: Point, pub rotation: Radians, pub mobility: Mobility, pub passable: bool, pub associated_data: Vec<u8>, }

The behaviourless description of an object that has been placed inside a Simulation.

Fields (Non-exhaustive)

Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
shape: Polygon

The vertices defining the shape of the object in relation to its position

location: Point

The global location of the center of the object

rotation: Radians

The object's rotation

mobility: Mobility

The current velocity of the object, defined as a two dimensional vector relative to the objects center

passable: bool

Whether the object is passable or not

associated_data: Vec<u8>

Arbitrary data associated with this object

Trait Implementations

impl PartialEq<ObjectDescription> for ObjectDescription[src]

impl Clone for ObjectDescription[src]

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

Performs copy-assignment from source. Read more

impl From<ObjectDescription> for ObjectBuilder[src]

impl Debug for ObjectDescription[src]

impl Serialize for ObjectDescription[src]

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

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

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

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Same for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf for SP where
    SS: SubsetOf<SP>, 
[src]

impl<T> Downcast for T where
    T: Any

impl<T> UserData for T where
    T: Send + Sync + Clone + Any
[src]