pub enum EstimateInput<'a> {
Spp {
eph: &'a dyn EphemerisSource,
inputs: &'a SolveInputs,
with_geodetic: bool,
policy: SolvePolicy,
},
RtkFloat {
epochs: &'a [Epoch],
base: [f64; 3],
ambiguity_ids: &'a [String],
initial_baseline_m: [f64; 3],
model: &'a MeasModel,
opts: FloatSolveOpts,
receiver_antenna_corrections: Option<&'a ReceiverAntennaCorrections>,
},
RtkFixed {
epochs: &'a [Epoch],
base: [f64; 3],
initial_ambiguities: AmbiguitySet<'a>,
initial_baseline_m: [f64; 3],
model: &'a MeasModel,
opts: ValidatedFixedSolveOpts,
receiver_antenna_corrections: Option<&'a ReceiverAntennaCorrections>,
},
PppFloat {
source: &'a dyn ObservableEphemerisSource,
epochs: &'a [FloatEpoch],
initial_state: FloatState,
config: FloatSolveConfig,
},
PppFixed {
source: &'a dyn ObservableEphemerisSource,
epochs: &'a [FloatEpoch],
float_solution: FloatSolution,
config: FixedSolveConfig,
},
}Expand description
Variants§
Spp
SPP under the public validation/orchestration policy
(spp::solve_with_policy).
RtkFloat
Static multi-epoch float RTK baseline (rtk_filter::solve_float_baseline).
RtkFixed
Static fixed RTK baseline with residual validation/FDE
(rtk_filter::solve_fixed_baseline_validated).
Fields
§
initial_ambiguities: AmbiguitySet<'a>§
opts: ValidatedFixedSolveOpts§
receiver_antenna_corrections: Option<&'a ReceiverAntennaCorrections>PppFloat
Static multi-epoch float PPP arc
(precise_positioning::solve_float_epochs).
Fields
§
source: &'a dyn ObservableEphemerisSource§
epochs: &'a [FloatEpoch]§
initial_state: FloatState§
config: FloatSolveConfigPppFixed
Integer-fixed PPP from an existing float solution
(precise_positioning::solve_fixed_from_float).
Fields
§
source: &'a dyn ObservableEphemerisSource§
epochs: &'a [FloatEpoch]§
float_solution: FloatSolution§
config: FixedSolveConfigImplementations§
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for EstimateInput<'a>
impl<'a> !Send for EstimateInput<'a>
impl<'a> !Sync for EstimateInput<'a>
impl<'a> !UnwindSafe for EstimateInput<'a>
impl<'a> Freeze for EstimateInput<'a>
impl<'a> Unpin for EstimateInput<'a>
impl<'a> UnsafeUnpin for EstimateInput<'a>
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> 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
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.