Enum adventofcode_rust_2015::day23::Instruction
source · [−]enum Instruction {
Hlf(String),
Tpl(String),
Inc(String),
Jmp(i64),
Jie(String, i64),
Jio(String, i64),
}
Variants
Hlf(String)
Tpl(String)
Inc(String)
Jmp(i64)
Jie(String, i64)
Jio(String, i64)
Auto Trait Implementations
impl RefUnwindSafe for Instruction
impl Send for Instruction
impl Sync for Instruction
impl Unpin for Instruction
impl UnwindSafe for Instruction
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more