Struct XMajor

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

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

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

Tuple Fields§

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

Implementations§

Source§

impl<T> XMajor<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 AsMut<XMajor<u8>> for LocalCostMatrix

Source§

fn as_mut(&mut self) -> &mut XMajor<u8>

Converts this type into a mutable reference of the (usually inferred) input type.
Source§

impl AsRef<XMajor<u8>> for LocalCostMatrix

Source§

fn as_ref(&self) -> &XMajor<u8>

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl<T> Index<RoomXY> for XMajor<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 XMajor<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 XMajor<T>
where T: Freeze,

§

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

§

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

§

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

§

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

§

impl<T> UnwindSafe for XMajor<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.