pub struct GCodeLine {
pub id: Id,
pub command: Command,
pub comments: String,
}
Expand description
Struct to store a single line of gcode, with an id, command, and comments
Fields§
§id: Id
§command: Command
§comments: String
Trait Implementations§
impl Eq for GCodeLine
impl StructuralPartialEq for GCodeLine
Auto Trait Implementations§
impl Freeze for GCodeLine
impl RefUnwindSafe for GCodeLine
impl Send for GCodeLine
impl Sync for GCodeLine
impl Unpin for GCodeLine
impl UnwindSafe for GCodeLine
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