pub struct GridUnderCursor {
pub grid: Id,
pub position: CellVec<u32>,
}Fields§
§grid: IdThe ID of the grid
position: CellVec<u32>The position of the cursor in grid cells relative to the grid
Trait Implementations§
Source§impl Clone for GridUnderCursor
impl Clone for GridUnderCursor
Source§fn clone(&self) -> GridUnderCursor
fn clone(&self) -> GridUnderCursor
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GridUnderCursor
impl Debug for GridUnderCursor
Source§impl PartialEq for GridUnderCursor
impl PartialEq for GridUnderCursor
impl Copy for GridUnderCursor
impl Eq for GridUnderCursor
impl StructuralPartialEq for GridUnderCursor
Auto Trait Implementations§
impl Freeze for GridUnderCursor
impl RefUnwindSafe for GridUnderCursor
impl Send for GridUnderCursor
impl Sync for GridUnderCursor
impl Unpin for GridUnderCursor
impl UnwindSafe for GridUnderCursor
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