pub trait ScalarSensitivityT<SolveState: State, Rx, Tx>where
Self: Sized,
DefaultAllocator: Allocator<SolveState::Size> + Allocator<SolveState::VecLength> + Allocator<SolveState::Size, SolveState::Size>,{
// Required method
fn new(
msr_type: MeasurementType,
msr: &Measurement,
rx: &Rx,
tx: &Tx,
almanac: Arc<Almanac>,
) -> Result<Self, ODError>;
}
Required Methods§
fn new( msr_type: MeasurementType, msr: &Measurement, rx: &Rx, tx: &Tx, almanac: Arc<Almanac>, ) -> Result<Self, ODError>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.