#[repr(u8)]pub enum MoveMode {
MoveP = 0,
MoveJ = 1,
MoveL = 2,
MoveC = 3,
MoveM = 4,
MoveCpv = 5,
}Expand description
MOVE 模式
Variants§
MoveP = 0
MOVE P - 点位模式(末端位姿控制)
MoveJ = 1
MOVE J - 关节模式
MoveL = 2
MOVE L - 直线运动
MoveC = 3
MOVE C - 圆弧运动
MoveM = 4
MOVE M - MIT 模式(V1.5-2+)
MoveCpv = 5
MOVE CPV - 连续位置速度模式(V1.8-1+)
Trait Implementations§
Source§impl FromPrimitive for MoveMode
impl FromPrimitive for MoveMode
impl Copy for MoveMode
impl Eq for MoveMode
impl StructuralPartialEq for MoveMode
Auto Trait Implementations§
impl Freeze for MoveMode
impl RefUnwindSafe for MoveMode
impl Send for MoveMode
impl Sync for MoveMode
impl Unpin for MoveMode
impl UnwindSafe for MoveMode
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