pub enum MotorGroup {
Group1 = 0,
Group2 = 1,
Group3 = 2,
Group4 = 3,
Group5 = 4,
Group6 = 5,
}Variants§
Trait Implementations§
Source§impl Clone for MotorGroup
impl Clone for MotorGroup
Source§fn clone(&self) -> MotorGroup
fn clone(&self) -> MotorGroup
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 MotorGroup
impl Debug for MotorGroup
Source§impl PartialEq for MotorGroup
impl PartialEq for MotorGroup
Source§impl TryFrom<u32> for MotorGroup
impl TryFrom<u32> for MotorGroup
Source§type Error = NanonisError
type Error = NanonisError
The type returned in the event of a conversion error.
Source§fn try_from(
value: u32,
) -> Result<MotorGroup, <MotorGroup as TryFrom<u32>>::Error>
fn try_from( value: u32, ) -> Result<MotorGroup, <MotorGroup as TryFrom<u32>>::Error>
Performs the conversion.
impl Copy for MotorGroup
impl Eq for MotorGroup
impl StructuralPartialEq for MotorGroup
Auto Trait Implementations§
impl Freeze for MotorGroup
impl RefUnwindSafe for MotorGroup
impl Send for MotorGroup
impl Sync for MotorGroup
impl Unpin for MotorGroup
impl UnwindSafe for MotorGroup
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