Struct light_curve_feature::prelude::FitInitsBoundsArrays
source · [−]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
sourceimpl<const NPARAMS: usize> FitInitsBoundsArrays<NPARAMS>
impl<const NPARAMS: usize> FitInitsBoundsArrays<NPARAMS>
pub fn new(
init: [f64; NPARAMS],
lower: [f64; NPARAMS],
upper: [f64; NPARAMS]
) -> Self
Trait Implementations
sourceimpl<const NPARAMS: usize> Clone for FitInitsBoundsArrays<NPARAMS>
impl<const NPARAMS: usize> Clone for FitInitsBoundsArrays<NPARAMS>
sourcefn clone(&self) -> FitInitsBoundsArrays<NPARAMS>
fn clone(&self) -> FitInitsBoundsArrays<NPARAMS>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<const NPARAMS: usize> Debug for FitInitsBoundsArrays<NPARAMS>
impl<const NPARAMS: usize> Debug for FitInitsBoundsArrays<NPARAMS>
sourceimpl<'de, const NPARAMS: usize> Deserialize<'de> for FitInitsBoundsArrays<NPARAMS>
impl<'de, const NPARAMS: usize> Deserialize<'de> for FitInitsBoundsArrays<NPARAMS>
sourcefn 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
sourceimpl<const NPARAMS: usize> From<FitInitsBoundsArrays<NPARAMS>> for OptionFitInitsBoundsArrays<NPARAMS>
impl<const NPARAMS: usize> From<FitInitsBoundsArrays<NPARAMS>> for OptionFitInitsBoundsArrays<NPARAMS>
sourcefn from(item: FitInitsBoundsArrays<NPARAMS>) -> Self
fn from(item: FitInitsBoundsArrays<NPARAMS>) -> Self
Converts to this type from the input type.
sourceimpl<const NPARAMS: usize> JsonSchema for FitInitsBoundsArrays<NPARAMS>
impl<const NPARAMS: usize> JsonSchema for FitInitsBoundsArrays<NPARAMS>
sourcefn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
sourcefn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
sourcefn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the $ref
keyword. Read more
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
sourceimpl<Src, Scheme> ApproxFrom<Src, Scheme> for Src where
Scheme: ApproxScheme,
impl<Src, Scheme> ApproxFrom<Src, Scheme> for Src where
Scheme: ApproxScheme,
sourcefn approx_from(src: Src) -> Result<Src, <Src as ApproxFrom<Src, Scheme>>::Err>
fn approx_from(src: Src) -> Result<Src, <Src as ApproxFrom<Src, Scheme>>::Err>
Convert the given value into an approximately equivalent representation.
sourceimpl<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.
sourcefn approx_into(self) -> Result<Dst, <Src as ApproxInto<Dst, Scheme>>::Err>
fn approx_into(self) -> Result<Dst, <Src as ApproxInto<Dst, Scheme>>::Err>
Convert the subject into an approximately equivalent representation.
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T, Dst> ConvAsUtil<Dst> for T
impl<T, Dst> ConvAsUtil<Dst> for T
sourcefn approx(self) -> Result<Dst, Self::Err> where
Self: ApproxInto<Dst, DefaultApprox>,
fn approx(self) -> Result<Dst, Self::Err> where
Self: ApproxInto<Dst, DefaultApprox>,
Approximate the subject with the default scheme.
sourcefn 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.
sourceimpl<T> ConvUtil for T
impl<T> ConvUtil for T
sourcefn approx_as<Dst>(self) -> Result<Dst, Self::Err> where
Self: ApproxInto<Dst, DefaultApprox>,
fn approx_as<Dst>(self) -> Result<Dst, Self::Err> where
Self: ApproxInto<Dst, DefaultApprox>,
Approximate the subject to a given type with the default scheme.
sourcefn 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.