[][src]Struct genie_scx::Map

pub struct Map { /* fields omitted */ }

Methods

impl Map[src]

pub fn from<R: Read>(input: &mut R) -> Result<Self>[src]

pub fn write_to<W: Write>(&self, output: &mut W) -> Result<()>[src]

pub fn width(&self) -> u32[src]

pub fn height(&self) -> u32[src]

pub fn tile(&self, x: u32, y: u32) -> Option<&Tile>[src]

pub fn tile_mut(&mut self, x: u32, y: u32) -> Option<&mut Tile>[src]

pub fn tiles(&self) -> impl Iterator<Item = &Tile>[src]

pub fn tiles_mut(&mut self) -> impl Iterator<Item = &mut Tile>[src]

Trait Implementations

impl Debug for Map[src]

Auto Trait Implementations

impl Send for Map

impl Sync for Map

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.