[][src]Struct tmx_reader::Tileset

pub struct Tileset {
    pub firstgid: i64,
    pub source: Option<String>,
    pub spacing: i32,
    pub margin: i32,
    pub name: String,
    pub tilewidth: i32,
    pub tileheight: i32,
    pub tilecount: i32,
    pub columns: i32,
    pub tiles: Vec<Tile>,
    pub tileoffset: Option<TileOffset>,
}

Fields

firstgid: i64source: Option<String>spacing: i32margin: i32name: Stringtilewidth: i32tileheight: i32tilecount: i32columns: i32tiles: Vec<Tile>tileoffset: Option<TileOffset>

Trait Implementations

impl Debug for Tileset[src]

Auto Trait Implementations

impl Send for Tileset

impl Sync for Tileset

impl Unpin for Tileset

impl UnwindSafe for Tileset

impl RefUnwindSafe for Tileset

Blanket Implementations

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 = !

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

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

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