Skip to main content

Parameter

Struct Parameter 

Source
pub struct Parameter { /* private fields */ }
Expand description

Complete definition and user-facing metadata for one scalar parameter.

Implementations§

Source§

impl Parameter

Source

pub fn free(name: impl Into<Arc<str>>) -> Self

Creates an unbounded free parameter with a default initial value.

Source

pub fn fixed(name: impl Into<Arc<str>>, value: f64) -> Self

Creates an unbounded parameter fixed at value.

Source

pub fn with_fixed_value(self, value: f64) -> Self

Returns this parameter fixed at value.

Source

pub fn with_free(self) -> Self

Returns this parameter marked as free.

Source

pub fn with_initial(self, initial: impl Into<InitialSpec>) -> Self

Returns this parameter with the specified initialization rule.

Source

pub fn with_bounds( self, min: impl Into<Option<f64>>, max: impl Into<Option<f64>>, ) -> Self

Returns this parameter with inclusive optional bounds.

Source

pub fn with_periodic(self) -> Self

Mark this parameter as periodic over its finite two-sided bounds.

Source

pub fn with_periodicity(self, periodic: bool) -> Self

Sets whether the parameter is periodic.

Source

pub fn with_scale(self, scale: f64) -> Self

Set the characteristic optimizer scale for this parameter.

The scale is metadata: fit integrations may use it to condition the optimizer coordinate system, while direct model evaluation is unchanged.

Source

pub fn with_unit(self, unit: impl Into<Arc<str>>) -> Self

Attaches a human-readable unit label.

Source

pub fn with_latex(self, latex: impl Into<Arc<str>>) -> Self

Attaches a LaTeX-formatted label.

Source

pub fn with_description(self, description: impl Into<Arc<str>>) -> Self

Attaches a longer human-readable description.

Source

pub fn name(&self) -> &str

Returns the unique parameter name.

Source

pub fn state(&self) -> &ParamState

Returns whether the parameter is free or fixed.

Source

pub fn is_free(&self) -> bool

Returns whether the parameter is free.

Source

pub fn is_fixed(&self) -> bool

Returns whether the parameter is fixed.

Source

pub fn initial_spec(&self) -> &InitialSpec

Returns the initialization rule.

Source

pub fn bounds_spec(&self) -> &Bounds

Returns the optional parameter bounds.

Source

pub fn is_periodic(&self) -> bool

Returns whether the parameter is periodic over its bounds.

Source

pub fn periodic_bounds(&self) -> Option<(f64, f64)>

Return the validated canonical half-open periodic interval.

Source

pub fn scale(&self) -> Option<f64>

Returns the optional characteristic optimizer scale.

Source

pub fn unit_label(&self) -> Option<&str>

Returns the optional human-readable unit label.

Source

pub fn latex_label(&self) -> Option<&str>

Returns the optional LaTeX-formatted label.

Source

pub fn description_text(&self) -> Option<&str>

Returns the optional longer description.

Trait Implementations§

Source§

impl Add for Parameter

Source§

type Output = Expr

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Parameter) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&Complex<f64>> for &Parameter

Source§

type Output = Expr

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &Complex64) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&Complex<f64>> for Parameter

Source§

type Output = Expr

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &Complex64) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&Expr> for &Parameter

Source§

type Output = Expr

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &Expr) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&Expr> for Parameter

Source§

type Output = Expr

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &Expr) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&Parameter> for &Expr

Source§

type Output = Expr

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &Parameter) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&Parameter> for Expr

Source§

type Output = Expr

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &Parameter) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&Parameter> for &f64

Source§

type Output = Expr

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &Parameter) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&Parameter> for f64

Source§

type Output = Expr

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &Parameter) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&Parameter> for &Complex64

Source§

type Output = Expr

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &Parameter) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&Parameter> for Complex64

Source§

type Output = Expr

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &Parameter) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&Parameter> for &Parameter

Source§

type Output = Expr

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &Parameter) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&Parameter> for Parameter

Source§

type Output = Expr

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &Parameter) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&f64> for &Parameter

Source§

type Output = Expr

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &f64) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&f64> for Parameter

Source§

type Output = Expr

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &f64) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<Complex<f64>> for &Parameter

Source§

type Output = Expr

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Complex64) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<Complex<f64>> for Parameter

Source§

type Output = Expr

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Complex64) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<Expr> for &Parameter

Source§

type Output = Expr

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Expr) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<Expr> for Parameter

Source§

type Output = Expr

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Expr) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<Parameter> for &Expr

Source§

type Output = Expr

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Parameter) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<Parameter> for Expr

Source§

type Output = Expr

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Parameter) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<Parameter> for &f64

Source§

type Output = Expr

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Parameter) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<Parameter> for f64

Source§

type Output = Expr

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Parameter) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<Parameter> for &Complex64

Source§

type Output = Expr

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Parameter) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<Parameter> for Complex64

Source§

type Output = Expr

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Parameter) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<Parameter> for &Parameter

Source§

type Output = Expr

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Parameter) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<f64> for &Parameter

Source§

type Output = Expr

The resulting type after applying the + operator.
Source§

fn add(self, rhs: f64) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<f64> for Parameter

Source§

type Output = Expr

The resulting type after applying the + operator.
Source§

fn add(self, rhs: f64) -> Self::Output

Performs the + operation. Read more
Source§

impl AddAssign<&Parameter> for Expr

Source§

fn add_assign(&mut self, rhs: &Parameter)

Performs the += operation. Read more
Source§

impl AddAssign<Parameter> for Expr

Source§

fn add_assign(&mut self, rhs: Parameter)

Performs the += operation. Read more
Source§

impl Clone for Parameter

Source§

fn clone(&self) -> Parameter

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Parameter

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for Parameter

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Div for Parameter

Source§

type Output = Expr

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Parameter) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&Complex<f64>> for &Parameter

Source§

type Output = Expr

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &Complex64) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&Complex<f64>> for Parameter

Source§

type Output = Expr

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &Complex64) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&Expr> for &Parameter

Source§

type Output = Expr

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &Expr) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&Expr> for Parameter

Source§

type Output = Expr

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &Expr) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&Parameter> for &Expr

Source§

type Output = Expr

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &Parameter) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&Parameter> for Expr

Source§

type Output = Expr

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &Parameter) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&Parameter> for &f64

Source§

type Output = Expr

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &Parameter) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&Parameter> for f64

Source§

type Output = Expr

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &Parameter) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&Parameter> for &Complex64

Source§

type Output = Expr

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &Parameter) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&Parameter> for Complex64

Source§

type Output = Expr

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &Parameter) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&Parameter> for &Parameter

Source§

type Output = Expr

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &Parameter) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&Parameter> for Parameter

Source§

type Output = Expr

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &Parameter) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&f64> for &Parameter

Source§

type Output = Expr

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &f64) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&f64> for Parameter

Source§

type Output = Expr

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &f64) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<Complex<f64>> for &Parameter

Source§

type Output = Expr

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Complex64) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<Complex<f64>> for Parameter

Source§

type Output = Expr

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Complex64) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<Expr> for &Parameter

Source§

type Output = Expr

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Expr) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<Expr> for Parameter

Source§

type Output = Expr

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Expr) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<Parameter> for &Expr

Source§

type Output = Expr

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Parameter) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<Parameter> for Expr

Source§

type Output = Expr

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Parameter) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<Parameter> for &f64

Source§

type Output = Expr

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Parameter) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<Parameter> for f64

Source§

type Output = Expr

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Parameter) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<Parameter> for &Complex64

Source§

type Output = Expr

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Parameter) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<Parameter> for Complex64

Source§

type Output = Expr

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Parameter) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<Parameter> for &Parameter

Source§

type Output = Expr

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Parameter) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<f64> for &Parameter

Source§

type Output = Expr

The resulting type after applying the / operator.
Source§

fn div(self, rhs: f64) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<f64> for Parameter

Source§

type Output = Expr

The resulting type after applying the / operator.
Source§

fn div(self, rhs: f64) -> Self::Output

Performs the / operation. Read more
Source§

impl DivAssign<&Parameter> for Expr

Source§

fn div_assign(&mut self, rhs: &Parameter)

Performs the /= operation. Read more
Source§

impl DivAssign<Parameter> for Expr

Source§

fn div_assign(&mut self, rhs: Parameter)

Performs the /= operation. Read more
Source§

impl From<&Parameter> for Expr

Source§

fn from(parameter: &Parameter) -> Self

Converts to this type from the input type.
Source§

impl From<Parameter> for Expr

Source§

fn from(parameter: Parameter) -> Self

Converts to this type from the input type.
Source§

impl Mul for Parameter

Source§

type Output = Expr

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Parameter) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&Complex<f64>> for &Parameter

Source§

type Output = Expr

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Complex64) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&Complex<f64>> for Parameter

Source§

type Output = Expr

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Complex64) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&Expr> for &Parameter

Source§

type Output = Expr

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Expr) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&Expr> for Parameter

Source§

type Output = Expr

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Expr) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&Parameter> for &Expr

Source§

type Output = Expr

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Parameter) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&Parameter> for Expr

Source§

type Output = Expr

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Parameter) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&Parameter> for &f64

Source§

type Output = Expr

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Parameter) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&Parameter> for f64

Source§

type Output = Expr

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Parameter) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&Parameter> for &Complex64

Source§

type Output = Expr

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Parameter) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&Parameter> for Complex64

Source§

type Output = Expr

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Parameter) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&Parameter> for &Parameter

Source§

type Output = Expr

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Parameter) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&Parameter> for Parameter

Source§

type Output = Expr

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Parameter) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&f64> for &Parameter

Source§

type Output = Expr

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &f64) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&f64> for Parameter

Source§

type Output = Expr

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &f64) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<Complex<f64>> for &Parameter

Source§

type Output = Expr

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Complex64) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<Complex<f64>> for Parameter

Source§

type Output = Expr

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Complex64) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<Expr> for &Parameter

Source§

type Output = Expr

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Expr) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<Expr> for Parameter

Source§

type Output = Expr

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Expr) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<Parameter> for &Expr

Source§

type Output = Expr

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Parameter) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<Parameter> for Expr

Source§

type Output = Expr

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Parameter) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<Parameter> for &f64

Source§

type Output = Expr

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Parameter) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<Parameter> for f64

Source§

type Output = Expr

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Parameter) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<Parameter> for &Complex64

Source§

type Output = Expr

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Parameter) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<Parameter> for Complex64

Source§

type Output = Expr

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Parameter) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<Parameter> for &Parameter

Source§

type Output = Expr

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Parameter) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<f64> for &Parameter

Source§

type Output = Expr

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: f64) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<f64> for Parameter

Source§

type Output = Expr

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: f64) -> Self::Output

Performs the * operation. Read more
Source§

impl MulAssign<&Parameter> for Expr

Source§

fn mul_assign(&mut self, rhs: &Parameter)

Performs the *= operation. Read more
Source§

impl MulAssign<Parameter> for Expr

Source§

fn mul_assign(&mut self, rhs: Parameter)

Performs the *= operation. Read more
Source§

impl Neg for &Parameter

Source§

type Output = Expr

The resulting type after applying the - operator.
Source§

fn neg(self) -> Self::Output

Performs the unary - operation. Read more
Source§

impl Neg for Parameter

Source§

type Output = Expr

The resulting type after applying the - operator.
Source§

fn neg(self) -> Self::Output

Performs the unary - operation. Read more
Source§

impl PartialEq for Parameter

Source§

fn eq(&self, other: &Parameter) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl Serialize for Parameter

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for Parameter

Source§

impl Sub for Parameter

Source§

type Output = Expr

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Parameter) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&Complex<f64>> for &Parameter

Source§

type Output = Expr

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &Complex64) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&Complex<f64>> for Parameter

Source§

type Output = Expr

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &Complex64) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&Expr> for &Parameter

Source§

type Output = Expr

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &Expr) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&Expr> for Parameter

Source§

type Output = Expr

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &Expr) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&Parameter> for &Expr

Source§

type Output = Expr

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &Parameter) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&Parameter> for Expr

Source§

type Output = Expr

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &Parameter) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&Parameter> for &f64

Source§

type Output = Expr

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &Parameter) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&Parameter> for f64

Source§

type Output = Expr

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &Parameter) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&Parameter> for &Complex64

Source§

type Output = Expr

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &Parameter) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&Parameter> for Complex64

Source§

type Output = Expr

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &Parameter) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&Parameter> for &Parameter

Source§

type Output = Expr

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &Parameter) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&Parameter> for Parameter

Source§

type Output = Expr

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &Parameter) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&f64> for &Parameter

Source§

type Output = Expr

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &f64) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&f64> for Parameter

Source§

type Output = Expr

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &f64) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<Complex<f64>> for &Parameter

Source§

type Output = Expr

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Complex64) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<Complex<f64>> for Parameter

Source§

type Output = Expr

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Complex64) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<Expr> for &Parameter

Source§

type Output = Expr

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Expr) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<Expr> for Parameter

Source§

type Output = Expr

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Expr) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<Parameter> for &Expr

Source§

type Output = Expr

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Parameter) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<Parameter> for Expr

Source§

type Output = Expr

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Parameter) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<Parameter> for &f64

Source§

type Output = Expr

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Parameter) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<Parameter> for f64

Source§

type Output = Expr

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Parameter) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<Parameter> for &Complex64

Source§

type Output = Expr

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Parameter) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<Parameter> for Complex64

Source§

type Output = Expr

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Parameter) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<Parameter> for &Parameter

Source§

type Output = Expr

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Parameter) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<f64> for &Parameter

Source§

type Output = Expr

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: f64) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<f64> for Parameter

Source§

type Output = Expr

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: f64) -> Self::Output

Performs the - operation. Read more
Source§

impl SubAssign<&Parameter> for Expr

Source§

fn sub_assign(&mut self, rhs: &Parameter)

Performs the -= operation. Read more
Source§

impl SubAssign<Parameter> for Expr

Source§

fn sub_assign(&mut self, rhs: Parameter)

Performs the -= operation. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.