#[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§
Trait Implementations§
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> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more