Struct Screen

Source
pub struct Screen {
    pub chars: Vec<String>,
    pub x: Vec<i64>,
    pub y: Vec<i64>,
    pub delay: u64,
    pub sprite: Vec<sprite>,
    pub orgin: map,
}

Fields§

§chars: Vec<String>§x: Vec<i64>§y: Vec<i64>§delay: u64§sprite: Vec<sprite>§orgin: map

Implementations§

Source§

impl Screen

Source

pub fn run(&self, cort: &mut Cort) -> map

Source

pub fn load_map(&mut self, map: map)

Source

pub fn set_orgin(&mut self, map: map)

Source

pub fn return_to_orgin(&mut self)

Source

pub fn cgmap(&self) -> map

Source

pub fn gmap(&self) -> map

Source

pub fn push_char(&mut self, x: i64, y: i64, char: &str)

Source

pub fn find_X(&self, ch: String) -> i64

Source

pub fn find_all_of_X(&self, ch: String) -> Vec<i64>

Auto Trait Implementations§

§

impl Freeze for Screen

§

impl RefUnwindSafe for Screen

§

impl Send for Screen

§

impl Sync for Screen

§

impl Unpin for Screen

§

impl UnwindSafe for Screen

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.