Enum ArcVal

Source
pub enum ArcVal {
Show 16 variants A(f64), B(f64), C(f64), E(f64), F(f64), S(f64), I(f64), J(f64), P(f64), R(f64), U(f64), V(f64), X(f64), Y(f64), Z(f64), W(f64),
}
Expand description

Parameters for Command::G2 and Command::G3

Similar to PosVal but with additional parameters I,J, P, R.

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

§

I(f64)

Arc center offset in the I direction

§

J(f64)

Arc center offset in the J direction

§

P(f64)

P<Count> number of complete circles.

§

R(f64)

Radius of the arc

§

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 ArcVal

Source§

fn clone(&self) -> ArcVal

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 ArcVal

Source§

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

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

impl Hash for ArcVal

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 ArcVal

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 ArcVal

Auto Trait Implementations§

§

impl Freeze for ArcVal

§

impl RefUnwindSafe for ArcVal

§

impl Send for ArcVal

§

impl Sync for ArcVal

§

impl Unpin for ArcVal

§

impl UnwindSafe for ArcVal

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.