Enum g_code::parse::token::Value [−][src]
Variants
Rational(Decimal)A real number GCode value.
While this is often an f64 or f32, that was converted to a string, it is parsed as a Decimal to ensure numerical stability.
Integer(usize)An unsigned integer GCode value fitting in a usize. For instance, this would be the 0 in G0.
String(&'input str)A string GCode value.
Delimiting quotes are included in the value and escaped quotes are NOT unescaped.
Trait Implementations
Performs the conversion.
Auto Trait Implementations
impl<'input> RefUnwindSafe for Value<'input>impl<'input> UnwindSafe for Value<'input>Blanket Implementations
Mutably borrows from an owned value. Read more