pub struct GIMBAL_TORQUE_CMD_REPORT_DATA {
pub rl_torque_cmd: i16,
pub el_torque_cmd: i16,
pub az_torque_cmd: i16,
pub target_system: u8,
pub target_component: u8,
}Available on crate feature
storm32 only.Expand description
100 Hz gimbal torque command telemetry.
ID: 214
Fields§
§rl_torque_cmd: i16Roll Torque Command.
el_torque_cmd: i16Elevation Torque Command.
az_torque_cmd: i16Azimuth Torque Command.
target_system: u8System ID.
target_component: u8Component ID.
Implementations§
Source§impl GIMBAL_TORQUE_CMD_REPORT_DATA
impl GIMBAL_TORQUE_CMD_REPORT_DATA
pub const ENCODED_LEN: usize = 8usize
pub const DEFAULT: Self
Trait Implementations§
Source§impl Clone for GIMBAL_TORQUE_CMD_REPORT_DATA
impl Clone for GIMBAL_TORQUE_CMD_REPORT_DATA
Source§fn clone(&self) -> GIMBAL_TORQUE_CMD_REPORT_DATA
fn clone(&self) -> GIMBAL_TORQUE_CMD_REPORT_DATA
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<'de> Deserialize<'de> for GIMBAL_TORQUE_CMD_REPORT_DATA
impl<'de> Deserialize<'de> for GIMBAL_TORQUE_CMD_REPORT_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 GIMBAL_TORQUE_CMD_REPORT_DATA
impl MessageData for GIMBAL_TORQUE_CMD_REPORT_DATA
Source§impl PartialEq for GIMBAL_TORQUE_CMD_REPORT_DATA
impl PartialEq for GIMBAL_TORQUE_CMD_REPORT_DATA
Source§fn eq(&self, other: &GIMBAL_TORQUE_CMD_REPORT_DATA) -> bool
fn eq(&self, other: &GIMBAL_TORQUE_CMD_REPORT_DATA) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GIMBAL_TORQUE_CMD_REPORT_DATA
Auto Trait Implementations§
impl Freeze for GIMBAL_TORQUE_CMD_REPORT_DATA
impl RefUnwindSafe for GIMBAL_TORQUE_CMD_REPORT_DATA
impl Send for GIMBAL_TORQUE_CMD_REPORT_DATA
impl Sync for GIMBAL_TORQUE_CMD_REPORT_DATA
impl Unpin for GIMBAL_TORQUE_CMD_REPORT_DATA
impl UnwindSafe for GIMBAL_TORQUE_CMD_REPORT_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