//! The ownship-status capability.
//!
//! Stub: the trait and its payload exist so a telemetry source can be added
//! later as a sibling capability, but no adapter implements it yet.
use async_trait;
use crate;
/// Live ownship state (position, altitude, track, …).
///
/// Placeholder pending a real telemetry source. `#[non_exhaustive]`, so
/// fields can be added later without breaking implementors.
/// A provider of ownship status — a sibling capability to
/// [`crate::WeatherBriefingProvider`] under the same [`ContextProvider`]
/// identity.