Struct tiled_parser::layer::Layer [] [src]

pub struct Layer {
    pub name: String,
    pub opacity: f32,
    pub properties: Option<HashMap<String, String>>,
    pub visible: bool,
    pub width: u32,
    pub height: u32,
    pub x: f32,
    pub y: f32,
    pub _type: String,
    pub data: Vec<u32>,
    pub draworder: String,
    pub objects: Vec<Object>,
}

Fields

Trait Implementations

impl Clone for Layer
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Layer
[src]

Formats the value using the given formatter.

impl Default for Layer
[src]

Returns the "default value" for a type. Read more