pub struct FLIGHT_INFORMATION_DATA {
pub arming_time_utc: u64,
pub takeoff_time_utc: u64,
pub flight_uuid: u64,
pub time_boot_ms: u32,
pub landing_time: u32,
}
Available on crate feature
avssuas
only.Expand description
id: 264 Flight information. This includes time since boot for arm, takeoff, and land, and a flight number. Takeoff and landing values reset to zero on arm. This can be requested using MAV_CMD_REQUEST_MESSAGE. Note, some fields are misnamed - timestamps are from boot (not UTC) and the flight_uuid is a sequence number.
Fields§
§arming_time_utc: u64
Timestamp at arming (since system boot). Set to 0 on boot. Set value on arming. Note, field is misnamed UTC.
takeoff_time_utc: u64
Timestamp at takeoff (since system boot). Set to 0 at boot and on arming. Note, field is misnamed UTC.
flight_uuid: u64
Flight number. Note, field is misnamed UUID.
time_boot_ms: u32
Timestamp (time since system boot).
landing_time: u32
Timestamp at landing (in ms since system boot). Set to 0 at boot and on arming.
Implementations§
Source§impl FLIGHT_INFORMATION_DATA
impl FLIGHT_INFORMATION_DATA
pub const ENCODED_LEN: usize = 32usize
pub const DEFAULT: Self
Trait Implementations§
Source§impl Clone for FLIGHT_INFORMATION_DATA
impl Clone for FLIGHT_INFORMATION_DATA
Source§fn clone(&self) -> FLIGHT_INFORMATION_DATA
fn clone(&self) -> FLIGHT_INFORMATION_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 FLIGHT_INFORMATION_DATA
impl Debug for FLIGHT_INFORMATION_DATA
Source§impl Default for FLIGHT_INFORMATION_DATA
impl Default for FLIGHT_INFORMATION_DATA
Source§impl<'de> Deserialize<'de> for FLIGHT_INFORMATION_DATA
impl<'de> Deserialize<'de> for FLIGHT_INFORMATION_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 FLIGHT_INFORMATION_DATA
impl MessageData for FLIGHT_INFORMATION_DATA
const ID: u32 = 264u32
const NAME: &'static str = "FLIGHT_INFORMATION"
const EXTRA_CRC: u8 = 49u8
const ENCODED_LEN: usize = 32usize
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 FLIGHT_INFORMATION_DATA
impl PartialEq for FLIGHT_INFORMATION_DATA
Source§impl Serialize for FLIGHT_INFORMATION_DATA
impl Serialize for FLIGHT_INFORMATION_DATA
impl StructuralPartialEq for FLIGHT_INFORMATION_DATA
Auto Trait Implementations§
impl Freeze for FLIGHT_INFORMATION_DATA
impl RefUnwindSafe for FLIGHT_INFORMATION_DATA
impl Send for FLIGHT_INFORMATION_DATA
impl Sync for FLIGHT_INFORMATION_DATA
impl Unpin for FLIGHT_INFORMATION_DATA
impl UnwindSafe for FLIGHT_INFORMATION_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