Enum aoc::year2020::day08::Instruction
source · pub enum Instruction {
Acc(i16),
Jmp(i16),
Nop(i16),
}
Variants§
Implementations§
source§impl Instruction
impl Instruction
fn from([a, b]: [&str; 2]) -> Instruction
Auto Trait Implementations§
impl Freeze for Instruction
impl RefUnwindSafe for Instruction
impl Send for Instruction
impl Sync for Instruction
impl Unpin for Instruction
impl UnwindSafe for Instruction
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