[][src]Struct ldtk_rust::Level

pub struct Level {
    pub identifier: String,
    pub uid: i32,
    pub world_x: i32,
    pub world_y: i32,
    pub px_wid: i32,
    pub px_hei: i32,
    pub __bg_color: String,
    pub bg_color: Option<String>,
    pub layer_instances: Vec<LayerInstance>,
}

Fields

identifier: Stringuid: i32world_x: i32world_y: i32px_wid: i32px_hei: i32__bg_color: Stringbg_color: Option<String>layer_instances: Vec<LayerInstance>

Trait Implementations

impl Debug for Level[src]

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

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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.