Struct mavlink::ualberta::COMMAND_CANCEL_DATA
source · pub struct COMMAND_CANCEL_DATA {
pub command: MavCmd,
pub target_system: u8,
pub target_component: u8,
}
Available on crate feature
ualberta
only.Expand description
id: 80 Cancel a long running command. The target system should respond with a COMMAND_ACK to the original command with result=MAV_RESULT_CANCELLED if the long running process was cancelled. If it has already completed, the cancel action can be ignored. The cancel action can be retried until some sort of acknowledgement to the original command has been received. The command microservice is documented at https://mavlink.io/en/services/command.html.
Fields§
§command: MavCmd
Command ID (of command to cancel)..
target_system: u8
System executing long running command. Should not be broadcast (0)..
target_component: u8
Component executing long running command..
Implementations§
source§impl COMMAND_CANCEL_DATA
impl COMMAND_CANCEL_DATA
pub const ENCODED_LEN: usize = 4usize
pub const DEFAULT: Self = _
Trait Implementations§
source§impl Clone for COMMAND_CANCEL_DATA
impl Clone for COMMAND_CANCEL_DATA
source§fn clone(&self) -> COMMAND_CANCEL_DATA
fn clone(&self) -> COMMAND_CANCEL_DATA
Returns a copy 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 COMMAND_CANCEL_DATA
impl Debug for COMMAND_CANCEL_DATA
source§impl Default for COMMAND_CANCEL_DATA
impl Default for COMMAND_CANCEL_DATA
source§impl<'de> Deserialize<'de> for COMMAND_CANCEL_DATA
impl<'de> Deserialize<'de> for COMMAND_CANCEL_DATA
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl MessageData for COMMAND_CANCEL_DATA
impl MessageData for COMMAND_CANCEL_DATA
const ID: u32 = 80u32
const NAME: &'static str = "COMMAND_CANCEL"
const EXTRA_CRC: u8 = 14u8
const ENCODED_LEN: usize = 4usize
type Message = MavMessage
fn deser(_version: MavlinkVersion, __input: &[u8]) -> Result<Self, ParserError>
fn ser(&self, version: MavlinkVersion, bytes: &mut [u8]) -> usize
source§impl PartialEq for COMMAND_CANCEL_DATA
impl PartialEq for COMMAND_CANCEL_DATA
source§impl Serialize for COMMAND_CANCEL_DATA
impl Serialize for COMMAND_CANCEL_DATA
impl StructuralPartialEq for COMMAND_CANCEL_DATA
Auto Trait Implementations§
impl Freeze for COMMAND_CANCEL_DATA
impl RefUnwindSafe for COMMAND_CANCEL_DATA
impl Send for COMMAND_CANCEL_DATA
impl Sync for COMMAND_CANCEL_DATA
impl Unpin for COMMAND_CANCEL_DATA
impl UnwindSafe for COMMAND_CANCEL_DATA
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)