Struct advent_of_code_2022::day_11::Monkey
source · struct Monkey {
items: Vec<isize>,
operation: Operation,
test: Test,
handling_count: usize,
}
Fields§
§items: Vec<isize>
§operation: Operation
§test: Test
§handling_count: usize
Trait Implementations§
source§impl PartialEq<Monkey> for Monkey
impl PartialEq<Monkey> for Monkey
impl Eq for Monkey
impl StructuralEq for Monkey
impl StructuralPartialEq for Monkey
Auto Trait Implementations§
impl RefUnwindSafe for Monkey
impl Send for Monkey
impl Sync for Monkey
impl Unpin for Monkey
impl UnwindSafe for Monkey
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