pub trait RaimSolution {
// Required methods
fn raim_used_sats(&self) -> Vec<String>;
fn raim_residuals_m(&self) -> &[f64];
}Expand description
A solution that can feed the RAIM test.
Required Methods§
Sourcefn raim_used_sats(&self) -> Vec<String>
fn raim_used_sats(&self) -> Vec<String>
Used satellite tokens, in residual order.
Sourcefn raim_residuals_m(&self) -> &[f64]
fn raim_residuals_m(&self) -> &[f64]
Post-fit residuals, meters, in used-satellite order.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".