pub struct Puzzle {
pub day: Day,
pub year: Year,
pub input: String,
pub part_one_answers: Answers,
pub part_two_answers: Answers,
}Expand description
Stores puzzle input and answer data.
Fields§
§day: Day§year: Year§input: String§part_one_answers: Answers§part_two_answers: AnswersImplementations§
Trait Implementations§
impl StructuralPartialEq for Puzzle
Auto Trait Implementations§
impl Freeze for Puzzle
impl RefUnwindSafe for Puzzle
impl Send for Puzzle
impl Sync for Puzzle
impl Unpin for Puzzle
impl UnwindSafe for Puzzle
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