Struct light_curve_feature::prelude::FitInitsBoundsArrays [−][src]
pub struct FitInitsBoundsArrays<const NPARAMS: usize> {
pub init: FitArray<f64, NPARAMS>,
pub lower: FitArray<f64, NPARAMS>,
pub upper: FitArray<f64, NPARAMS>,
}
Fields
init: FitArray<f64, NPARAMS>
lower: FitArray<f64, NPARAMS>
upper: FitArray<f64, NPARAMS>
Implementations
Trait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl<const NPARAMS: usize> From<FitInitsBoundsArrays<NPARAMS>> for OptionFitInitsBoundsArrays<NPARAMS>
impl<const NPARAMS: usize> From<FitInitsBoundsArrays<NPARAMS>> for OptionFitInitsBoundsArrays<NPARAMS>
Performs the conversion.
Auto Trait Implementations
impl<const NPARAMS: usize> RefUnwindSafe for FitInitsBoundsArrays<NPARAMS>
impl<const NPARAMS: usize> Send for FitInitsBoundsArrays<NPARAMS>
impl<const NPARAMS: usize> Sync for FitInitsBoundsArrays<NPARAMS>
impl<const NPARAMS: usize> Unpin for FitInitsBoundsArrays<NPARAMS>
impl<const NPARAMS: usize> UnwindSafe for FitInitsBoundsArrays<NPARAMS>
Blanket Implementations
Convert the given value into an approximately equivalent representation.
impl<Dst, Src, Scheme> ApproxInto<Dst, Scheme> for Src where
Dst: ApproxFrom<Src, Scheme>,
Scheme: ApproxScheme,
impl<Dst, Src, Scheme> ApproxInto<Dst, Scheme> for Src where
Dst: ApproxFrom<Src, Scheme>,
Scheme: ApproxScheme,
type Err = <Dst as ApproxFrom<Src, Scheme>>::Err
type Err = <Dst as ApproxFrom<Src, Scheme>>::Err
The error type produced by a failed conversion.
Convert the subject into an approximately equivalent representation.
Mutably borrows from an owned value. Read more
Approximate the subject with the default scheme.
fn approx_by<Scheme>(self) -> Result<Dst, Self::Err> where
Self: ApproxInto<Dst, Scheme>,
Scheme: ApproxScheme,
fn approx_by<Scheme>(self) -> Result<Dst, Self::Err> where
Self: ApproxInto<Dst, Scheme>,
Scheme: ApproxScheme,
Approximate the subject with a specific scheme.
Approximate the subject to a given type with the default scheme.
fn approx_as_by<Dst, Scheme>(self) -> Result<Dst, Self::Err> where
Self: ApproxInto<Dst, Scheme>,
Scheme: ApproxScheme,
fn approx_as_by<Dst, Scheme>(self) -> Result<Dst, Self::Err> where
Self: ApproxInto<Dst, Scheme>,
Scheme: ApproxScheme,
Approximate the subject to a given type with a specific scheme.
Attempt to convert the subject to a given type.