pub struct SatelliteInfo {
pub prn: Option<u8>,
pub elevation: Option<u16>,
pub azimuth: Option<u16>,
pub snr: Option<u8>,
}Expand description
Information about a single satellite
Fields§
§prn: Option<u8>§elevation: Option<u16>§azimuth: Option<u16>§snr: Option<u8>Trait Implementations§
Source§impl Clone for SatelliteInfo
impl Clone for SatelliteInfo
Source§fn clone(&self) -> SatelliteInfo
fn clone(&self) -> SatelliteInfo
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 moreAuto Trait Implementations§
impl Freeze for SatelliteInfo
impl RefUnwindSafe for SatelliteInfo
impl Send for SatelliteInfo
impl Sync for SatelliteInfo
impl Unpin for SatelliteInfo
impl UnwindSafe for SatelliteInfo
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