pub enum A8MiniComplexCommand {
SetYawPitchSpeed(i8, i8),
SetYawPitchAngle(i16, i16),
SetTimeUTC(u64),
GetCodecSpecs(u8),
SetCodecSpecs(u8, u8, u16, u16, u16, u8),
RequestGimbalDataStream(u8, u8),
}Expand description
Enums for commands that require continuous values for data field.
Variants§
SetYawPitchSpeed(i8, i8)
SetYawPitchAngle(i16, i16)
SetTimeUTC(u64)
GetCodecSpecs(u8)
SetCodecSpecs(u8, u8, u16, u16, u16, u8)
RequestGimbalDataStream(u8, u8)
Trait Implementations§
Source§impl Clone for A8MiniComplexCommand
impl Clone for A8MiniComplexCommand
Source§fn clone(&self) -> A8MiniComplexCommand
fn clone(&self) -> A8MiniComplexCommand
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 A8MiniComplexCommand
impl Debug for A8MiniComplexCommand
Source§impl PartialEq for A8MiniComplexCommand
impl PartialEq for A8MiniComplexCommand
impl Copy for A8MiniComplexCommand
impl Eq for A8MiniComplexCommand
impl StructuralPartialEq for A8MiniComplexCommand
Auto Trait Implementations§
impl Freeze for A8MiniComplexCommand
impl RefUnwindSafe for A8MiniComplexCommand
impl Send for A8MiniComplexCommand
impl Sync for A8MiniComplexCommand
impl Unpin for A8MiniComplexCommand
impl UnsafeUnpin for A8MiniComplexCommand
impl UnwindSafe for A8MiniComplexCommand
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.