pub enum TelloCommand {
TakeOff,
Land,
StopAndHover,
EmergencyStop,
RemoteControl {
left_right: i8,
forwards_backwards: i8,
up_down: i8,
yaw: i8,
},
FlipLeft,
FlipRight,
FlipForward,
FlipBack,
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TelloCommand
impl RefUnwindSafe for TelloCommand
impl Send for TelloCommand
impl Sync for TelloCommand
impl Unpin for TelloCommand
impl UnwindSafe for TelloCommand
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