pub struct SatcomLinkStatus {
pub timestamp: u64,
pub last_heartbeat: u64,
pub failed_sessions: u16,
pub successful_sessions: u16,
pub signal_quality: u8,
pub ring_pending: u8,
pub tx_session_pending: u8,
pub rx_session_pending: u8,
}Expand description
MAVLink SATCOM_LINK_STATUS message.
The minimum supported MAVLink version is MAVLink 2.
§Description
Status of the SatCom link
§Encoding/Decoding
Message encoding/decoding are provided by implementing core::convert::TryFrom<Payload> for
SatcomLinkStatus (encoding) and [IntoPayload] (decoding) traits.
These traits are implemented by Message proc macro.
Fields§
§timestamp: u64MAVLink field timestamp.
Timestamp
last_heartbeat: u64MAVLink field last_heartbeat.
Timestamp of the last successful sbd session
failed_sessions: u16MAVLink field failed_sessions.
Number of failed sessions
successful_sessions: u16MAVLink field successful_sessions.
Number of successful sessions
signal_quality: u8MAVLink field signal_quality.
Signal quality
ring_pending: u8MAVLink field ring_pending.
Ring call pending
tx_session_pending: u8MAVLink field tx_session_pending.
Transmission session pending
rx_session_pending: u8MAVLink field rx_session_pending.
Receiving session pending
Implementations§
Source§impl SatcomLinkStatus
impl SatcomLinkStatus
Sourcepub const fn spec() -> MessageInfo
pub const fn spec() -> MessageInfo
Returns specification for this message.
Sourcepub const fn message_id() -> MessageId
pub const fn message_id() -> MessageId
Message ID.
Sourcepub const fn min_supported_mavlink_version() -> MavLinkVersion
pub const fn min_supported_mavlink_version() -> MavLinkVersion
Minimum supported MAVLink version for this message.
Trait Implementations§
Source§impl Clone for SatcomLinkStatus
impl Clone for SatcomLinkStatus
Source§fn clone(&self) -> SatcomLinkStatus
fn clone(&self) -> SatcomLinkStatus
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for SatcomLinkStatus
impl Debug for SatcomLinkStatus
Source§impl Default for SatcomLinkStatus
impl Default for SatcomLinkStatus
Source§impl<'de> Deserialize<'de> for SatcomLinkStatus
impl<'de> Deserialize<'de> for SatcomLinkStatus
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>,
Source§impl From<SatcomLinkStatus> for All
impl From<SatcomLinkStatus> for All
Source§fn from(value: SatcomLinkStatus) -> Self
fn from(value: SatcomLinkStatus) -> Self
Source§impl IntoPayload for SatcomLinkStatus
impl IntoPayload for SatcomLinkStatus
Source§impl MessageSpec for SatcomLinkStatus
impl MessageSpec for SatcomLinkStatus
Source§impl MessageSpecStatic for SatcomLinkStatus
impl MessageSpecStatic for SatcomLinkStatus
Source§fn spec() -> MessageInfo
fn spec() -> MessageInfo
Source§fn message_id() -> MessageId
fn message_id() -> MessageId
ID.Source§fn min_supported_mavlink_version() -> MavLinkVersion
fn min_supported_mavlink_version() -> MavLinkVersion
Source§impl NamedType for SatcomLinkStatus
impl NamedType for SatcomLinkStatus
fn sid() -> SpectaID
Source§fn named_data_type(
type_map: &mut TypeCollection,
generics: &[DataType],
) -> NamedDataType
fn named_data_type( type_map: &mut TypeCollection, generics: &[DataType], ) -> NamedDataType
Source§fn definition_named_data_type(type_map: &mut TypeCollection) -> NamedDataType
fn definition_named_data_type(type_map: &mut TypeCollection) -> NamedDataType
Source§impl PartialEq for SatcomLinkStatus
impl PartialEq for SatcomLinkStatus
Source§impl Serialize for SatcomLinkStatus
impl Serialize for SatcomLinkStatus
Source§impl TryFrom<&Payload> for SatcomLinkStatus
impl TryFrom<&Payload> for SatcomLinkStatus
Source§impl Type for SatcomLinkStatus
impl Type for SatcomLinkStatus
Source§fn inline(type_map: &mut TypeCollection, generics: Generics<'_>) -> DataType
fn inline(type_map: &mut TypeCollection, generics: Generics<'_>) -> DataType
Source§fn reference(type_map: &mut TypeCollection, generics: &[DataType]) -> Reference
fn reference(type_map: &mut TypeCollection, generics: &[DataType]) -> Reference
definition will be put into the type map.