#[non_exhaustive]pub enum SatBody {
PositionV2(PositionV2Body),
CellFragment(CellFragmentBody),
TimeAssociation(TimeAssociationBody),
BeamhoppingTimePlan(BeamhoppingTimePlanBody),
PositionV3(PositionV3Body),
Raw(Vec<u8>),
}Expand description
The typed body of a SAT section, selected by satellite_table_id
(Tables 11c–11h).
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
PositionV2(PositionV2Body)
satellite_table_id == 0: Position V2 (Table 11c).
CellFragment(CellFragmentBody)
satellite_table_id == 1: Cell Fragment (Table 11d).
TimeAssociation(TimeAssociationBody)
satellite_table_id == 2: Time Association (Table 11e).
BeamhoppingTimePlan(BeamhoppingTimePlanBody)
satellite_table_id == 3: Beamhopping Time Plan (Table 11g).
PositionV3(PositionV3Body)
satellite_table_id == 4: Position V3 (Table 11h).
Raw(Vec<u8>)
Reserved satellite_table_id (5–63): raw body bytes.
Trait Implementations§
impl Eq for SatBody
impl StructuralPartialEq for SatBody
Auto Trait Implementations§
impl Freeze for SatBody
impl RefUnwindSafe for SatBody
impl Send for SatBody
impl Sync for SatBody
impl Unpin for SatBody
impl UnsafeUnpin for SatBody
impl UnwindSafe for SatBody
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