Enum PosVal

Source
pub enum PosVal {
    A(f64),
    B(f64),
    C(f64),
    E(f64),
    F(f64),
    S(f64),
    U(f64),
    V(f64),
    X(f64),
    Y(f64),
    Z(f64),
    W(f64),
}
Expand description

Parameters for Command::G0 and Command::G1

Variants§

§

A(f64)

Axis A

§

B(f64)

Axis B

§

C(f64)

Axis C

§

E(f64)

Extruder

§

F(f64)

sets the federate for all subsequent moved.

§

S(f64)

Sets the laser power for the move

§

U(f64)

Axis U

§

V(f64)

Axis V

§

X(f64)

Axis X

§

Y(f64)

Axis Y

§

Z(f64)

Axis Z

§

W(f64)

Axis W

Trait Implementations§

Source§

impl Clone for PosVal

Source§

fn clone(&self) -> PosVal

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for PosVal

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Hash for PosVal

Hash is used to determine if an entry should be added to the Sets

malformed commands with duplicate parameters will be rejected here.

G1 X95.110 X96.233 E2.07708

By ignoring the f64 in hashing the parsed Command will only have one X value.

Source§

fn hash<H: Hasher>(&self, state: &mut H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl PartialEq for PosVal

Bit wise comparison cant’ compare directly [NAN and inf]

N.B. Equality is not used in production code - assertion testing only.

Source§

fn eq(&self, other: &Self) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Eq for PosVal

Auto Trait Implementations§

§

impl Freeze for PosVal

§

impl RefUnwindSafe for PosVal

§

impl Send for PosVal

§

impl Sync for PosVal

§

impl Unpin for PosVal

§

impl UnwindSafe for PosVal

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.