pub enum Word {
Gcode(Expr),
Mcode(Expr),
Feed(Expr),
Spindle(Expr),
Tool(Expr),
Arg(Arg, Expr),
}Expand description
A G-code “word”, i.e. indication letter and value.
The value can be a complex expression introduced in brackets, even for G
and M words.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Word
impl RefUnwindSafe for Word
impl Send for Word
impl Sync for Word
impl Unpin for Word
impl UnwindSafe for Word
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