pub enum MultiPartVal {
A(String),
C,
P(i128),
S(i128, Option<String>),
T(i128),
U(i128),
}
Expand description
Parameters used in M486 Commands
Variants§
A(String)
A Integrity check used to assert this name is equal to be equivalent embedded stl file name.
C
C ; Cancel the current object (use with care!)
P(i128)
P10 ; Cancel object with index 10 (the 11th object)
S(i128, Option<String>)
M486 S3 ; Indicate that the 4th object is starting now M486 S3 A“cube copy 3“ ; Indicate that the 4th object is starting now and name it S-1 ; Indicate a non-object, purge tower, or other global feature
T(i128)
T12 ; Total of 12 objects (otherwise the firmware must count)
U(i128)
U2 ; Un-cancel object with index 2 (the 3rd object)
Trait Implementations§
Source§impl Clone for MultiPartVal
impl Clone for MultiPartVal
Source§fn clone(&self) -> MultiPartVal
fn clone(&self) -> MultiPartVal
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for MultiPartVal
impl Debug for MultiPartVal
Source§impl Hash for MultiPartVal
impl Hash for MultiPartVal
Source§impl PartialEq for MultiPartVal
impl PartialEq for MultiPartVal
impl Eq for MultiPartVal
impl StructuralPartialEq for MultiPartVal
Auto Trait Implementations§
impl Freeze for MultiPartVal
impl RefUnwindSafe for MultiPartVal
impl Send for MultiPartVal
impl Sync for MultiPartVal
impl Unpin for MultiPartVal
impl UnwindSafe for MultiPartVal
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