#[repr(u8)]pub enum SatHealth {
Unknown = 0,
Ok = 1,
Bad = 2,
}Expand description
Satellite health status
Indicates whether a satellite’s signals are reliable for navigation.
Reference: satellite.health
Variants§
Unknown = 0
Health status unknown
Ok = 1
Satellite is healthy and usable
Bad = 2
Satellite is unhealthy, do not use
Trait Implementations§
Source§impl<'de> Deserialize<'de> for SatHealth
impl<'de> Deserialize<'de> for SatHealth
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
impl Copy for SatHealth
impl Eq for SatHealth
impl StructuralPartialEq for SatHealth
Auto Trait Implementations§
impl Freeze for SatHealth
impl RefUnwindSafe for SatHealth
impl Send for SatHealth
impl Sync for SatHealth
impl Unpin for SatHealth
impl UnwindSafe for SatHealth
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