Struct YMajor

Source
#[repr(transparent)]
pub struct YMajor<T>(pub [[T; 50]; 50]);
Expand description

A wrapper struct indicating that the inner array should be indexed Y major, i.e. ``` use screeps::{ constants::ROOM_USIZE, local::{YMajor, XY}, };

let mut y_major = YMajor([[0_u8; ROOM_USIZE]; ROOM_USIZE]); y_major.0[0][10] = 1; let xy = RoomXY::checked_new(10, 0).unwrap(); assert_eq!(y_major[xy], 1);

Tuple Fields§

§0: [[T; 50]; 50]

Implementations§

Source§

impl<T> YMajor<T>

Source

pub fn from_ref(arr: &[[T; 50]; 50]) -> &Self

Source

pub fn from_flat_ref(arr: &[T; 2500]) -> &Self

Source

pub fn from_mut(arr: &mut [[T; 50]; 50]) -> &mut Self

Source

pub fn from_flat_mut(arr: &mut [T; 2500]) -> &mut Self

Trait Implementations§

Source§

impl<T> Index<RoomXY> for YMajor<T>

Source§

type Output = T

The returned type after indexing.
Source§

fn index(&self, index: RoomXY) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
Source§

impl<T> IndexMut<RoomXY> for YMajor<T>

Source§

fn index_mut(&mut self, index: RoomXY) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more

Auto Trait Implementations§

§

impl<T> Freeze for YMajor<T>
where T: Freeze,

§

impl<T> RefUnwindSafe for YMajor<T>
where T: RefUnwindSafe,

§

impl<T> Send for YMajor<T>
where T: Send,

§

impl<T> Sync for YMajor<T>
where T: Sync,

§

impl<T> Unpin for YMajor<T>
where T: Unpin,

§

impl<T> UnwindSafe for YMajor<T>
where T: UnwindSafe,

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.