pub enum ByeOrSlimInstructions {
Bye,
Instructions(Vec<Instruction>),
}Variants§
Bye
Instructions(Vec<Instruction>)
Trait Implementations§
Source§impl Debug for ByeOrSlimInstructions
impl Debug for ByeOrSlimInstructions
Source§impl FromSlimReader for ByeOrSlimInstructions
impl FromSlimReader for ByeOrSlimInstructions
fn from_reader(reader: &mut impl BufRead) -> Result<Self, FromSlimReaderError>where
Self: Sized,
Source§impl PartialEq for ByeOrSlimInstructions
impl PartialEq for ByeOrSlimInstructions
impl Eq for ByeOrSlimInstructions
impl StructuralPartialEq for ByeOrSlimInstructions
Auto Trait Implementations§
impl Freeze for ByeOrSlimInstructions
impl RefUnwindSafe for ByeOrSlimInstructions
impl Send for ByeOrSlimInstructions
impl Sync for ByeOrSlimInstructions
impl Unpin for ByeOrSlimInstructions
impl UnwindSafe for ByeOrSlimInstructions
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