pub struct CONTROL_LOADING_AXIS_DATA {
pub time_boot_ms: u32,
pub position: f32,
pub velocity: f32,
pub force: f32,
pub axis: ControlAxis,
}Available on crate feature
marsh only.Expand description
Send data about a control axis from a control loading system. This is the primary message for logging data from MARSH_TYPE_CONTROL_LOADING.
ID: 52501
Fields§
§time_boot_ms: u32Timestamp (time since system boot).
position: f32Axis position
velocity: f32Axis velocity
force: f32Force applied in the pilot in the direction of movement axis (not gripping force), measured at the position of pilot’s third finger (ring). Unit N (Newton), currently not part of mavschema.xsd
axis: ControlAxisControl axis on which the measurements were taken.
Implementations§
Source§impl CONTROL_LOADING_AXIS_DATA
impl CONTROL_LOADING_AXIS_DATA
pub const ENCODED_LEN: usize = 17usize
pub const DEFAULT: Self
Trait Implementations§
Source§impl Clone for CONTROL_LOADING_AXIS_DATA
impl Clone for CONTROL_LOADING_AXIS_DATA
Source§fn clone(&self) -> CONTROL_LOADING_AXIS_DATA
fn clone(&self) -> CONTROL_LOADING_AXIS_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 Debug for CONTROL_LOADING_AXIS_DATA
impl Debug for CONTROL_LOADING_AXIS_DATA
Source§impl Default for CONTROL_LOADING_AXIS_DATA
impl Default for CONTROL_LOADING_AXIS_DATA
Source§impl<'de> Deserialize<'de> for CONTROL_LOADING_AXIS_DATA
impl<'de> Deserialize<'de> for CONTROL_LOADING_AXIS_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 CONTROL_LOADING_AXIS_DATA
impl MessageData for CONTROL_LOADING_AXIS_DATA
impl StructuralPartialEq for CONTROL_LOADING_AXIS_DATA
Auto Trait Implementations§
impl Freeze for CONTROL_LOADING_AXIS_DATA
impl RefUnwindSafe for CONTROL_LOADING_AXIS_DATA
impl Send for CONTROL_LOADING_AXIS_DATA
impl Sync for CONTROL_LOADING_AXIS_DATA
impl Unpin for CONTROL_LOADING_AXIS_DATA
impl UnwindSafe for CONTROL_LOADING_AXIS_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