[][src]Struct pyxel::Tileset

pub struct Tileset { /* fields omitted */ }

A Pyxel tileset.

Methods

impl Tileset[src]

pub fn fixed_width(&self) -> bool[src]

Returns true if this tileset is fixed width when displayed in the PyxelEdit UI.

pub fn tile_height(&self) -> u16[src]

Returns the tile height in pixels of the tiles in this tileset.

pub fn tile_width(&self) -> u16[src]

Returns the tile width in pixels of the tiles in this tileset.

pub fn tiles_wide(&self) -> u8[src]

Returns the width of this tileset when displayed in the PyxelEdit UI.

pub fn image_data(&self) -> &Vec<Vec<u8>>[src]

Returns raw bytes of the images for the tiles in this tileset.

Trait Implementations

impl Debug for Tileset[src]

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

Auto Trait Implementations

impl Sync for Tileset

impl Send for Tileset

impl Unpin for Tileset

impl RefUnwindSafe for Tileset

impl UnwindSafe 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 = 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]