pub struct MazePointOffset {
pub row: i32,
pub col: i32,
}Expand description
Represents an offset between maze points
Fields§
§row: i32Row offset
col: i32Column offset
Trait Implementations§
Source§impl Clone for MazePointOffset
impl Clone for MazePointOffset
Source§fn clone(&self) -> MazePointOffset
fn clone(&self) -> MazePointOffset
Returns a copy 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 MazePointOffset
impl Debug for MazePointOffset
Auto Trait Implementations§
impl Freeze for MazePointOffset
impl RefUnwindSafe for MazePointOffset
impl Send for MazePointOffset
impl Sync for MazePointOffset
impl Unpin for MazePointOffset
impl UnwindSafe for MazePointOffset
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