pub enum StepResolution {
FullStep,
HalfStep,
QuarterStep,
EighthStep,
SixteenthStep,
}Expand description
Step resolution options for stepper motors
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for StepResolution
impl Clone for StepResolution
Source§fn clone(&self) -> StepResolution
fn clone(&self) -> StepResolution
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 StepResolution
impl Debug for StepResolution
Source§impl PartialEq for StepResolution
impl PartialEq for StepResolution
impl Copy for StepResolution
impl StructuralPartialEq for StepResolution
Auto Trait Implementations§
impl Freeze for StepResolution
impl RefUnwindSafe for StepResolution
impl Send for StepResolution
impl Sync for StepResolution
impl Unpin for StepResolution
impl UnsafeUnpin for StepResolution
impl UnwindSafe for StepResolution
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