pub struct Day06 {
pub rows: usize,
pub cols: usize,
pub grid: Vec<u8>,
pub start: Point2D<usize>,
}
Expand description
2024 Day 6: Finding obstructions to cause infinite loops.
Fields§
§rows: usize
§cols: usize
§grid: Vec<u8>
§start: Point2D<usize>
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Day06
impl RefUnwindSafe for Day06
impl Send for Day06
impl Sync for Day06
impl Unpin for Day06
impl UnwindSafe for Day06
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