pub enum CodeLine<S: AsRef<str>> {
Printf(Vec<Arg<S>>),
Scanf {
name: S,
prompt: S,
},
Let {
name: S,
value: Arg<S>,
},
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<S> Freeze for CodeLine<S>where
S: Freeze,
impl<S> RefUnwindSafe for CodeLine<S>where
S: RefUnwindSafe,
impl<S> Send for CodeLine<S>where
S: Send,
impl<S> Sync for CodeLine<S>where
S: Sync,
impl<S> Unpin for CodeLine<S>where
S: Unpin,
impl<S> UnwindSafe for CodeLine<S>where
S: UnwindSafe,
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