pub struct BiasSet {
pub mode: BiasMode,
pub time_scale: TimeScale,
pub clock_reference: ClockReferenceObservables,
pub header: BiasSetHeader,
/* private fields */
}Fields§
§mode: BiasMode§time_scale: TimeScale§clock_reference: ClockReferenceObservables§header: BiasSetHeaderImplementations§
Source§impl BiasSet
impl BiasSet
pub fn parse_bias_sinex(input: &[u8]) -> Result<Parsed<BiasSet>, BiasError>
pub fn parse_code_dcb( input: &[u8], options: Option<CodeDcbOptions>, ) -> Result<Parsed<BiasSet>, BiasError>
pub fn diagnostics(&self) -> &Diagnostics
pub fn skipped_records(&self) -> usize
pub fn code_osb_seconds( &self, sat: GnssSatelliteId, obs: &str, epoch: Instant, ) -> Option<f64>
pub fn phase_osb_cycles( &self, sat: GnssSatelliteId, obs: &str, epoch: Instant, ) -> Option<f64>
pub fn code_dsb_seconds( &self, sat: GnssSatelliteId, obs1: &str, obs2: &str, epoch: Instant, ) -> Option<f64>
pub fn receiver_code_osb_seconds( &self, system: GnssSystem, station: &str, obs: &str, epoch: Instant, ) -> Option<f64>
pub fn receiver_code_dsb_seconds( &self, system: GnssSystem, station: &str, obs1: &str, obs2: &str, epoch: Instant, ) -> Option<f64>
pub fn sat_receiver_code_osb_seconds( &self, sat: GnssSatelliteId, station: &str, obs: &str, epoch: Instant, ) -> Option<f64>
pub fn sat_receiver_code_dsb_seconds( &self, sat: GnssSatelliteId, station: &str, obs1: &str, obs2: &str, epoch: Instant, ) -> Option<f64>
pub fn records(&self) -> &[BiasRecord]
pub fn code_bias_model_m( &self, sat: GnssSatelliteId, used_observables: (&str, &str), used_frequencies_hz: (f64, f64), glonass_channel: Option<i8>, clock_reference: (&str, &str), epoch: Instant, ) -> Option<f64>
Trait Implementations§
impl StructuralPartialEq for BiasSet
Auto Trait Implementations§
impl Freeze for BiasSet
impl RefUnwindSafe for BiasSet
impl Send for BiasSet
impl Sync for BiasSet
impl Unpin for BiasSet
impl UnsafeUnpin for BiasSet
impl UnwindSafe for BiasSet
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pointable for T
impl<T> Pointable for T
impl<T> Scalar for T
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.