Enum g_code::parse::token::Value   [−][src]
Variants
Rational(Decimal)A real number g-code 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.
Tuple Fields of Rational
0: DecimalInteger(usize)An unsigned integer g-code value fitting in a usize. For instance, this would be the 0 in G0.
Tuple Fields of Integer
0: usizeString(&'input str)A string g-code value.
Delimiting quotes are included in the value and escaped quotes are NOT unescaped.
Tuple Fields of String
0: &'input strTrait 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