[][src]Struct tiled_json_rs::Object

pub struct Object {
    pub gid: Option<u32>,
    pub id: Option<u32>,
    pub name: String,
    pub custom_type: String,
    pub rotation: f32,
    pub height: f32,
    pub width: f32,
    pub x: f32,
    pub y: f32,
    pub properties: HashMap<String, TiledValue>,
    pub object_type: ObjectType,
}

Fields

gid: Option<u32>id: Option<u32>

Incremental id - unique across all objects

name: Stringcustom_type: Stringrotation: f32

Angle in degrees clockwise

height: f32width: f32x: f32

X coordinate in pixels

y: f32

Y coordinate in pixels

properties: HashMap<String, TiledValue>object_type: ObjectType

An almost concrete type. Some types aren't included in this, eg; a square which can be derived from the X/Y & Height/Width

Types can be:

  • Point
  • Polygon
  • Polyline
  • Text
  • Ellipse
  • or None

Trait Implementations

impl PartialEq<Object> for Object[src]

impl Clone for Object[src]

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

Performs copy-assignment from source. Read more

impl Debug for Object[src]

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

Auto Trait Implementations

impl Send for Object

impl Unpin for Object

impl Sync for Object

impl UnwindSafe for Object

impl RefUnwindSafe for Object

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

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