pub struct ContinuousResourceVariable(/* private fields */);Expand description
A struct wrapping an id.
Implementations§
Source§impl ContinuousResourceVariable
impl ContinuousResourceVariable
Sourcepub fn abs(self) -> ContinuousExpression
pub fn abs(self) -> ContinuousExpression
Returns an expression representing the absolute value
Sourcepub fn sqrt(self) -> ContinuousExpression
pub fn sqrt(self) -> ContinuousExpression
Returns an expression representing the square root.
Sourcepub fn floor(self) -> ContinuousExpression
pub fn floor(self) -> ContinuousExpression
Returns an expression representing the floor.
Sourcepub fn ceil(self) -> ContinuousExpression
pub fn ceil(self) -> ContinuousExpression
Returns an expression representing the ceiling.
Sourcepub fn round(self) -> ContinuousExpression
pub fn round(self) -> ContinuousExpression
Returns an expression representing the rounded value.
Sourcepub fn trunc(self) -> ContinuousExpression
pub fn trunc(self) -> ContinuousExpression
Returns an expression representing the truncated value.
Trait Implementations§
Source§impl AccessPreference<ContinuousResourceVariable> for Model
impl AccessPreference<ContinuousResourceVariable> for Model
Source§fn get_preference(
&self,
v: ContinuousResourceVariable,
) -> Result<bool, ModelErr>
fn get_preference( &self, v: ContinuousResourceVariable, ) -> Result<bool, ModelErr>
Source§fn set_preference(
&mut self,
v: ContinuousResourceVariable,
less_is_better: bool,
) -> Result<(), ModelErr>
fn set_preference( &mut self, v: ContinuousResourceVariable, less_is_better: bool, ) -> Result<(), ModelErr>
Source§impl AccessPreference<ContinuousResourceVariable> for StateMetadata
impl AccessPreference<ContinuousResourceVariable> for StateMetadata
Source§fn get_preference(
&self,
v: ContinuousResourceVariable,
) -> Result<bool, ModelErr>
fn get_preference( &self, v: ContinuousResourceVariable, ) -> Result<bool, ModelErr>
Source§fn set_preference(
&mut self,
v: ContinuousResourceVariable,
less_is_better: bool,
) -> Result<(), ModelErr>
fn set_preference( &mut self, v: ContinuousResourceVariable, less_is_better: bool, ) -> Result<(), ModelErr>
Source§impl AccessTarget<ContinuousResourceVariable, f64> for Model
impl AccessTarget<ContinuousResourceVariable, f64> for Model
Source§fn get_target(
&self,
v: ContinuousResourceVariable,
) -> Result<Continuous, ModelErr>
fn get_target( &self, v: ContinuousResourceVariable, ) -> Result<Continuous, ModelErr>
Source§fn set_target(
&mut self,
v: ContinuousResourceVariable,
target: Continuous,
) -> Result<(), ModelErr>
fn set_target( &mut self, v: ContinuousResourceVariable, target: Continuous, ) -> Result<(), ModelErr>
Source§impl Add<ContinuousExpression> for ContinuousResourceVariable
impl Add<ContinuousExpression> for ContinuousResourceVariable
Source§fn add(self, rhs: ContinuousExpression) -> ContinuousExpression
fn add(self, rhs: ContinuousExpression) -> ContinuousExpression
Returns an expression representing the addition.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
+ operator.Source§impl Add<ContinuousResourceVariable> for ContinuousExpression
impl Add<ContinuousResourceVariable> for ContinuousExpression
Source§fn add(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn add(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Returns an expression representing the addition.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
+ operator.Source§impl Add<ContinuousResourceVariable> for ContinuousVariable
impl Add<ContinuousResourceVariable> for ContinuousVariable
Source§fn add(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn add(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Returns an expression representing the addition.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
+ operator.Source§impl Add<ContinuousResourceVariable> for IntegerExpression
impl Add<ContinuousResourceVariable> for IntegerExpression
Source§fn add(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn add(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Returns an expression representing the addition.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
+ operator.Source§impl Add<ContinuousResourceVariable> for IntegerResourceVariable
impl Add<ContinuousResourceVariable> for IntegerResourceVariable
Source§fn add(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn add(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Returns an expression representing the addition.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
+ operator.Source§impl Add<ContinuousResourceVariable> for IntegerVariable
impl Add<ContinuousResourceVariable> for IntegerVariable
Source§fn add(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn add(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Returns an expression representing the addition.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
+ operator.Source§impl Add<ContinuousResourceVariable> for Continuous
impl Add<ContinuousResourceVariable> for Continuous
Source§fn add(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn add(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Returns an expression representing the addition.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
+ operator.Source§impl Add<ContinuousResourceVariable> for Integer
impl Add<ContinuousResourceVariable> for Integer
Source§fn add(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn add(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Returns an expression representing the addition.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
+ operator.Source§impl Add<ContinuousVariable> for ContinuousResourceVariable
impl Add<ContinuousVariable> for ContinuousResourceVariable
Source§fn add(self, rhs: ContinuousVariable) -> ContinuousExpression
fn add(self, rhs: ContinuousVariable) -> ContinuousExpression
Returns an expression representing the addition.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
+ operator.Source§impl Add<IntegerExpression> for ContinuousResourceVariable
impl Add<IntegerExpression> for ContinuousResourceVariable
Source§fn add(self, rhs: IntegerExpression) -> ContinuousExpression
fn add(self, rhs: IntegerExpression) -> ContinuousExpression
Returns an expression representing the addition.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
+ operator.Source§impl Add<IntegerResourceVariable> for ContinuousResourceVariable
impl Add<IntegerResourceVariable> for ContinuousResourceVariable
Source§fn add(self, rhs: IntegerResourceVariable) -> ContinuousExpression
fn add(self, rhs: IntegerResourceVariable) -> ContinuousExpression
Returns an expression representing the addition.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
+ operator.Source§impl Add<IntegerVariable> for ContinuousResourceVariable
impl Add<IntegerVariable> for ContinuousResourceVariable
Source§fn add(self, rhs: IntegerVariable) -> ContinuousExpression
fn add(self, rhs: IntegerVariable) -> ContinuousExpression
Returns an expression representing the addition.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
+ operator.Source§impl Add<f64> for ContinuousResourceVariable
impl Add<f64> for ContinuousResourceVariable
Source§fn add(self, rhs: Continuous) -> ContinuousExpression
fn add(self, rhs: Continuous) -> ContinuousExpression
Returns an expression representing the addition.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
+ operator.Source§impl Add<i32> for ContinuousResourceVariable
impl Add<i32> for ContinuousResourceVariable
Source§fn add(self, rhs: Integer) -> ContinuousExpression
fn add(self, rhs: Integer) -> ContinuousExpression
Returns an expression representing the addition.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
+ operator.Source§impl Add for ContinuousResourceVariable
impl Add for ContinuousResourceVariable
Source§fn add(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn add(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Returns an expression representing the addition.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
+ operator.Source§impl AddEffect<ContinuousResourceVariable, ContinuousExpression> for Transition
impl AddEffect<ContinuousResourceVariable, ContinuousExpression> for Transition
Source§fn add_effect<V>(
&mut self,
v: ContinuousResourceVariable,
expression: V,
) -> Result<(), ModelErr>where
ContinuousExpression: From<V>,
fn add_effect<V>(
&mut self,
v: ContinuousResourceVariable,
expression: V,
) -> Result<(), ModelErr>where
ContinuousExpression: From<V>,
Source§impl CheckVariable<ContinuousResourceVariable> for StateMetadata
impl CheckVariable<ContinuousResourceVariable> for StateMetadata
Source§fn check_variable(&self, v: ContinuousResourceVariable) -> Result<(), ModelErr>
fn check_variable(&self, v: ContinuousResourceVariable) -> Result<(), ModelErr>
Source§impl Clone for ContinuousResourceVariable
impl Clone for ContinuousResourceVariable
Source§fn clone(&self) -> ContinuousResourceVariable
fn clone(&self) -> ContinuousResourceVariable
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl ContinuousBinaryOperation<ContinuousExpression> for ContinuousResourceVariable
impl ContinuousBinaryOperation<ContinuousExpression> for ContinuousResourceVariable
type Output = ContinuousExpression
Source§fn pow(self, rhs: ContinuousExpression) -> ContinuousExpression
fn pow(self, rhs: ContinuousExpression) -> ContinuousExpression
Source§fn log(self, rhs: ContinuousExpression) -> ContinuousExpression
fn log(self, rhs: ContinuousExpression) -> ContinuousExpression
Source§impl ContinuousBinaryOperation<ContinuousResourceVariable> for ContinuousExpression
impl ContinuousBinaryOperation<ContinuousResourceVariable> for ContinuousExpression
type Output = ContinuousExpression
Source§fn pow(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn pow(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Source§fn log(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn log(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Source§impl ContinuousBinaryOperation<ContinuousResourceVariable> for ContinuousVariable
impl ContinuousBinaryOperation<ContinuousResourceVariable> for ContinuousVariable
type Output = ContinuousExpression
Source§fn pow(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn pow(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Source§fn log(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn log(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Source§impl ContinuousBinaryOperation<ContinuousResourceVariable> for IntegerExpression
impl ContinuousBinaryOperation<ContinuousResourceVariable> for IntegerExpression
type Output = ContinuousExpression
Source§fn pow(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn pow(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Source§fn log(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn log(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Source§impl ContinuousBinaryOperation<ContinuousResourceVariable> for IntegerResourceVariable
impl ContinuousBinaryOperation<ContinuousResourceVariable> for IntegerResourceVariable
type Output = ContinuousExpression
Source§fn pow(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn pow(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Source§fn log(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn log(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Source§impl ContinuousBinaryOperation<ContinuousResourceVariable> for IntegerVariable
impl ContinuousBinaryOperation<ContinuousResourceVariable> for IntegerVariable
type Output = ContinuousExpression
Source§fn pow(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn pow(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Source§fn log(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn log(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Source§impl ContinuousBinaryOperation<ContinuousResourceVariable> for Continuous
impl ContinuousBinaryOperation<ContinuousResourceVariable> for Continuous
type Output = ContinuousExpression
Source§fn pow(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn pow(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Source§fn log(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn log(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Source§impl ContinuousBinaryOperation<ContinuousResourceVariable> for Integer
impl ContinuousBinaryOperation<ContinuousResourceVariable> for Integer
type Output = ContinuousExpression
Source§fn pow(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn pow(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Source§fn log(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn log(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Source§impl ContinuousBinaryOperation<ContinuousVariable> for ContinuousResourceVariable
impl ContinuousBinaryOperation<ContinuousVariable> for ContinuousResourceVariable
type Output = ContinuousExpression
Source§fn pow(self, rhs: ContinuousVariable) -> ContinuousExpression
fn pow(self, rhs: ContinuousVariable) -> ContinuousExpression
Source§fn log(self, rhs: ContinuousVariable) -> ContinuousExpression
fn log(self, rhs: ContinuousVariable) -> ContinuousExpression
Source§impl ContinuousBinaryOperation<IntegerExpression> for ContinuousResourceVariable
impl ContinuousBinaryOperation<IntegerExpression> for ContinuousResourceVariable
type Output = ContinuousExpression
Source§fn pow(self, rhs: IntegerExpression) -> ContinuousExpression
fn pow(self, rhs: IntegerExpression) -> ContinuousExpression
Source§fn log(self, rhs: IntegerExpression) -> ContinuousExpression
fn log(self, rhs: IntegerExpression) -> ContinuousExpression
Source§impl ContinuousBinaryOperation<IntegerResourceVariable> for ContinuousResourceVariable
impl ContinuousBinaryOperation<IntegerResourceVariable> for ContinuousResourceVariable
type Output = ContinuousExpression
Source§fn pow(self, rhs: IntegerResourceVariable) -> ContinuousExpression
fn pow(self, rhs: IntegerResourceVariable) -> ContinuousExpression
Source§fn log(self, rhs: IntegerResourceVariable) -> ContinuousExpression
fn log(self, rhs: IntegerResourceVariable) -> ContinuousExpression
Source§impl ContinuousBinaryOperation<IntegerVariable> for ContinuousResourceVariable
impl ContinuousBinaryOperation<IntegerVariable> for ContinuousResourceVariable
type Output = ContinuousExpression
Source§fn pow(self, rhs: IntegerVariable) -> ContinuousExpression
fn pow(self, rhs: IntegerVariable) -> ContinuousExpression
Source§fn log(self, rhs: IntegerVariable) -> ContinuousExpression
fn log(self, rhs: IntegerVariable) -> ContinuousExpression
Source§impl ContinuousBinaryOperation<f64> for ContinuousResourceVariable
impl ContinuousBinaryOperation<f64> for ContinuousResourceVariable
type Output = ContinuousExpression
Source§fn pow(self, rhs: Continuous) -> ContinuousExpression
fn pow(self, rhs: Continuous) -> ContinuousExpression
Source§fn log(self, rhs: Continuous) -> ContinuousExpression
fn log(self, rhs: Continuous) -> ContinuousExpression
Source§impl ContinuousBinaryOperation<i32> for ContinuousResourceVariable
impl ContinuousBinaryOperation<i32> for ContinuousResourceVariable
type Output = ContinuousExpression
Source§fn pow(self, rhs: Integer) -> ContinuousExpression
fn pow(self, rhs: Integer) -> ContinuousExpression
Source§fn log(self, rhs: Integer) -> ContinuousExpression
fn log(self, rhs: Integer) -> ContinuousExpression
Source§impl ContinuousBinaryOperation for ContinuousResourceVariable
impl ContinuousBinaryOperation for ContinuousResourceVariable
type Output = ContinuousExpression
Source§fn pow(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn pow(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Source§fn log(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn log(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Source§impl Debug for ContinuousResourceVariable
impl Debug for ContinuousResourceVariable
Source§impl Div<ContinuousExpression> for ContinuousResourceVariable
impl Div<ContinuousExpression> for ContinuousResourceVariable
Source§fn div(self, rhs: ContinuousExpression) -> ContinuousExpression
fn div(self, rhs: ContinuousExpression) -> ContinuousExpression
Returns an expression representing the division.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
/ operator.Source§impl Div<ContinuousResourceVariable> for ContinuousExpression
impl Div<ContinuousResourceVariable> for ContinuousExpression
Source§fn div(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn div(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Returns an expression representing the division.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
/ operator.Source§impl Div<ContinuousResourceVariable> for ContinuousVariable
impl Div<ContinuousResourceVariable> for ContinuousVariable
Source§fn div(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn div(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Returns an expression representing the division.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
/ operator.Source§impl Div<ContinuousResourceVariable> for IntegerExpression
impl Div<ContinuousResourceVariable> for IntegerExpression
Source§fn div(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn div(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Returns an expression representing the division.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
/ operator.Source§impl Div<ContinuousResourceVariable> for IntegerResourceVariable
impl Div<ContinuousResourceVariable> for IntegerResourceVariable
Source§fn div(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn div(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Returns an expression representing the division.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
/ operator.Source§impl Div<ContinuousResourceVariable> for IntegerVariable
impl Div<ContinuousResourceVariable> for IntegerVariable
Source§fn div(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn div(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Returns an expression representing the division.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
/ operator.Source§impl Div<ContinuousResourceVariable> for Continuous
impl Div<ContinuousResourceVariable> for Continuous
Source§fn div(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn div(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Returns an expression representing the division.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
/ operator.Source§impl Div<ContinuousResourceVariable> for Integer
impl Div<ContinuousResourceVariable> for Integer
Source§fn div(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn div(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Returns an expression representing the division.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
/ operator.Source§impl Div<ContinuousVariable> for ContinuousResourceVariable
impl Div<ContinuousVariable> for ContinuousResourceVariable
Source§fn div(self, rhs: ContinuousVariable) -> ContinuousExpression
fn div(self, rhs: ContinuousVariable) -> ContinuousExpression
Returns an expression representing the division.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
/ operator.Source§impl Div<IntegerExpression> for ContinuousResourceVariable
impl Div<IntegerExpression> for ContinuousResourceVariable
Source§fn div(self, rhs: IntegerExpression) -> ContinuousExpression
fn div(self, rhs: IntegerExpression) -> ContinuousExpression
Returns an expression representing the division.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
/ operator.Source§impl Div<IntegerResourceVariable> for ContinuousResourceVariable
impl Div<IntegerResourceVariable> for ContinuousResourceVariable
Source§fn div(self, rhs: IntegerResourceVariable) -> ContinuousExpression
fn div(self, rhs: IntegerResourceVariable) -> ContinuousExpression
Returns an expression representing the division.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
/ operator.Source§impl Div<IntegerVariable> for ContinuousResourceVariable
impl Div<IntegerVariable> for ContinuousResourceVariable
Source§fn div(self, rhs: IntegerVariable) -> ContinuousExpression
fn div(self, rhs: IntegerVariable) -> ContinuousExpression
Returns an expression representing the division.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
/ operator.Source§impl Div<f64> for ContinuousResourceVariable
impl Div<f64> for ContinuousResourceVariable
Source§fn div(self, rhs: Continuous) -> ContinuousExpression
fn div(self, rhs: Continuous) -> ContinuousExpression
Returns an expression representing the division.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
/ operator.Source§impl Div<i32> for ContinuousResourceVariable
impl Div<i32> for ContinuousResourceVariable
Source§fn div(self, rhs: Integer) -> ContinuousExpression
fn div(self, rhs: Integer) -> ContinuousExpression
Returns an expression representing the division.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
/ operator.Source§impl Div for ContinuousResourceVariable
impl Div for ContinuousResourceVariable
Source§fn div(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn div(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Returns an expression representing the division.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
/ operator.Source§impl From<ContinuousResourceVariable> for ContinuousExpression
impl From<ContinuousResourceVariable> for ContinuousExpression
Source§fn from(v: ContinuousResourceVariable) -> Self
fn from(v: ContinuousResourceVariable) -> Self
Source§impl From<ContinuousResourceVariable> for CostExpression
impl From<ContinuousResourceVariable> for CostExpression
Source§fn from(cost: ContinuousResourceVariable) -> Self
fn from(cost: ContinuousResourceVariable) -> Self
Source§impl MaxMin<ContinuousExpression> for ContinuousResourceVariable
impl MaxMin<ContinuousExpression> for ContinuousResourceVariable
type Output = ContinuousExpression
Source§fn max(self, rhs: ContinuousExpression) -> ContinuousExpression
fn max(self, rhs: ContinuousExpression) -> ContinuousExpression
Source§fn min(self, rhs: ContinuousExpression) -> ContinuousExpression
fn min(self, rhs: ContinuousExpression) -> ContinuousExpression
Source§impl MaxMin<ContinuousResourceVariable> for ContinuousExpression
impl MaxMin<ContinuousResourceVariable> for ContinuousExpression
type Output = ContinuousExpression
Source§fn max(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn max(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Source§fn min(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn min(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Source§impl MaxMin<ContinuousResourceVariable> for ContinuousVariable
impl MaxMin<ContinuousResourceVariable> for ContinuousVariable
type Output = ContinuousExpression
Source§fn max(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn max(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Source§fn min(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn min(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Source§impl MaxMin<ContinuousResourceVariable> for IntegerExpression
impl MaxMin<ContinuousResourceVariable> for IntegerExpression
type Output = ContinuousExpression
Source§fn max(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn max(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Source§fn min(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn min(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Source§impl MaxMin<ContinuousResourceVariable> for IntegerResourceVariable
impl MaxMin<ContinuousResourceVariable> for IntegerResourceVariable
type Output = ContinuousExpression
Source§fn max(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn max(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Source§fn min(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn min(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Source§impl MaxMin<ContinuousResourceVariable> for IntegerVariable
impl MaxMin<ContinuousResourceVariable> for IntegerVariable
type Output = ContinuousExpression
Source§fn max(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn max(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Source§fn min(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn min(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Source§impl MaxMin<ContinuousResourceVariable> for Continuous
impl MaxMin<ContinuousResourceVariable> for Continuous
type Output = ContinuousExpression
Source§fn max(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn max(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Source§fn min(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn min(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Source§impl MaxMin<ContinuousResourceVariable> for Integer
impl MaxMin<ContinuousResourceVariable> for Integer
type Output = ContinuousExpression
Source§fn max(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn max(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Source§fn min(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn min(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Source§impl MaxMin<ContinuousVariable> for ContinuousResourceVariable
impl MaxMin<ContinuousVariable> for ContinuousResourceVariable
type Output = ContinuousExpression
Source§fn max(self, rhs: ContinuousVariable) -> ContinuousExpression
fn max(self, rhs: ContinuousVariable) -> ContinuousExpression
Source§fn min(self, rhs: ContinuousVariable) -> ContinuousExpression
fn min(self, rhs: ContinuousVariable) -> ContinuousExpression
Source§impl MaxMin<IntegerExpression> for ContinuousResourceVariable
impl MaxMin<IntegerExpression> for ContinuousResourceVariable
type Output = ContinuousExpression
Source§fn max(self, rhs: IntegerExpression) -> ContinuousExpression
fn max(self, rhs: IntegerExpression) -> ContinuousExpression
Source§fn min(self, rhs: IntegerExpression) -> ContinuousExpression
fn min(self, rhs: IntegerExpression) -> ContinuousExpression
Source§impl MaxMin<IntegerResourceVariable> for ContinuousResourceVariable
impl MaxMin<IntegerResourceVariable> for ContinuousResourceVariable
type Output = ContinuousExpression
Source§fn max(self, rhs: IntegerResourceVariable) -> ContinuousExpression
fn max(self, rhs: IntegerResourceVariable) -> ContinuousExpression
Source§fn min(self, rhs: IntegerResourceVariable) -> ContinuousExpression
fn min(self, rhs: IntegerResourceVariable) -> ContinuousExpression
Source§impl MaxMin<IntegerVariable> for ContinuousResourceVariable
impl MaxMin<IntegerVariable> for ContinuousResourceVariable
type Output = ContinuousExpression
Source§fn max(self, rhs: IntegerVariable) -> ContinuousExpression
fn max(self, rhs: IntegerVariable) -> ContinuousExpression
Source§fn min(self, rhs: IntegerVariable) -> ContinuousExpression
fn min(self, rhs: IntegerVariable) -> ContinuousExpression
Source§impl MaxMin<f64> for ContinuousResourceVariable
impl MaxMin<f64> for ContinuousResourceVariable
type Output = ContinuousExpression
Source§fn max(self, rhs: Continuous) -> ContinuousExpression
fn max(self, rhs: Continuous) -> ContinuousExpression
Source§fn min(self, rhs: Continuous) -> ContinuousExpression
fn min(self, rhs: Continuous) -> ContinuousExpression
Source§impl MaxMin<i32> for ContinuousResourceVariable
impl MaxMin<i32> for ContinuousResourceVariable
type Output = ContinuousExpression
Source§fn max(self, rhs: Integer) -> ContinuousExpression
fn max(self, rhs: Integer) -> ContinuousExpression
Source§fn min(self, rhs: Integer) -> ContinuousExpression
fn min(self, rhs: Integer) -> ContinuousExpression
Source§impl MaxMin for ContinuousResourceVariable
impl MaxMin for ContinuousResourceVariable
type Output = ContinuousExpression
Source§fn max(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn max(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Source§fn min(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn min(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Source§impl Mul<ContinuousExpression> for ContinuousResourceVariable
impl Mul<ContinuousExpression> for ContinuousResourceVariable
Source§fn mul(self, rhs: ContinuousExpression) -> ContinuousExpression
fn mul(self, rhs: ContinuousExpression) -> ContinuousExpression
Returns an expression representing the multiplication.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
* operator.Source§impl Mul<ContinuousResourceVariable> for ContinuousExpression
impl Mul<ContinuousResourceVariable> for ContinuousExpression
Source§fn mul(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn mul(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Returns an expression representing the multiplication.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
* operator.Source§impl Mul<ContinuousResourceVariable> for ContinuousVariable
impl Mul<ContinuousResourceVariable> for ContinuousVariable
Source§fn mul(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn mul(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Returns an expression representing the multiplication.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
* operator.Source§impl Mul<ContinuousResourceVariable> for IntegerExpression
impl Mul<ContinuousResourceVariable> for IntegerExpression
Source§fn mul(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn mul(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Returns an expression representing the multiplication.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
* operator.Source§impl Mul<ContinuousResourceVariable> for IntegerResourceVariable
impl Mul<ContinuousResourceVariable> for IntegerResourceVariable
Source§fn mul(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn mul(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Returns an expression representing the multiplication.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
* operator.Source§impl Mul<ContinuousResourceVariable> for IntegerVariable
impl Mul<ContinuousResourceVariable> for IntegerVariable
Source§fn mul(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn mul(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Returns an expression representing the multiplication.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
* operator.Source§impl Mul<ContinuousResourceVariable> for Continuous
impl Mul<ContinuousResourceVariable> for Continuous
Source§fn mul(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn mul(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Returns an expression representing the multiplication.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
* operator.Source§impl Mul<ContinuousResourceVariable> for Integer
impl Mul<ContinuousResourceVariable> for Integer
Source§fn mul(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn mul(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Returns an expression representing the multiplication.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
* operator.Source§impl Mul<ContinuousVariable> for ContinuousResourceVariable
impl Mul<ContinuousVariable> for ContinuousResourceVariable
Source§fn mul(self, rhs: ContinuousVariable) -> ContinuousExpression
fn mul(self, rhs: ContinuousVariable) -> ContinuousExpression
Returns an expression representing the multiplication.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
* operator.Source§impl Mul<IntegerExpression> for ContinuousResourceVariable
impl Mul<IntegerExpression> for ContinuousResourceVariable
Source§fn mul(self, rhs: IntegerExpression) -> ContinuousExpression
fn mul(self, rhs: IntegerExpression) -> ContinuousExpression
Returns an expression representing the multiplication.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
* operator.Source§impl Mul<IntegerResourceVariable> for ContinuousResourceVariable
impl Mul<IntegerResourceVariable> for ContinuousResourceVariable
Source§fn mul(self, rhs: IntegerResourceVariable) -> ContinuousExpression
fn mul(self, rhs: IntegerResourceVariable) -> ContinuousExpression
Returns an expression representing the multiplication.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
* operator.Source§impl Mul<IntegerVariable> for ContinuousResourceVariable
impl Mul<IntegerVariable> for ContinuousResourceVariable
Source§fn mul(self, rhs: IntegerVariable) -> ContinuousExpression
fn mul(self, rhs: IntegerVariable) -> ContinuousExpression
Returns an expression representing the multiplication.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
* operator.Source§impl Mul<f64> for ContinuousResourceVariable
impl Mul<f64> for ContinuousResourceVariable
Source§fn mul(self, rhs: Continuous) -> ContinuousExpression
fn mul(self, rhs: Continuous) -> ContinuousExpression
Returns an expression representing the multiplication.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
* operator.Source§impl Mul<i32> for ContinuousResourceVariable
impl Mul<i32> for ContinuousResourceVariable
Source§fn mul(self, rhs: Integer) -> ContinuousExpression
fn mul(self, rhs: Integer) -> ContinuousExpression
Returns an expression representing the multiplication.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
* operator.Source§impl Mul for ContinuousResourceVariable
impl Mul for ContinuousResourceVariable
Source§fn mul(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn mul(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Returns an expression representing the multiplication.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
* operator.Source§impl Neg for ContinuousResourceVariable
impl Neg for ContinuousResourceVariable
Source§impl Rem<ContinuousExpression> for ContinuousResourceVariable
impl Rem<ContinuousExpression> for ContinuousResourceVariable
Source§fn rem(self, rhs: ContinuousExpression) -> ContinuousExpression
fn rem(self, rhs: ContinuousExpression) -> ContinuousExpression
Returns an expression representing the remainder.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
% operator.Source§impl Rem<ContinuousResourceVariable> for ContinuousExpression
impl Rem<ContinuousResourceVariable> for ContinuousExpression
Source§fn rem(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn rem(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Returns an expression representing the remainder.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
% operator.Source§impl Rem<ContinuousResourceVariable> for ContinuousVariable
impl Rem<ContinuousResourceVariable> for ContinuousVariable
Source§fn rem(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn rem(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Returns an expression representing the remainder.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
% operator.Source§impl Rem<ContinuousResourceVariable> for IntegerExpression
impl Rem<ContinuousResourceVariable> for IntegerExpression
Source§fn rem(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn rem(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Returns an expression representing the remainder.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
% operator.Source§impl Rem<ContinuousResourceVariable> for IntegerResourceVariable
impl Rem<ContinuousResourceVariable> for IntegerResourceVariable
Source§fn rem(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn rem(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Returns an expression representing the remainder.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
% operator.Source§impl Rem<ContinuousResourceVariable> for IntegerVariable
impl Rem<ContinuousResourceVariable> for IntegerVariable
Source§fn rem(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn rem(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Returns an expression representing the remainder.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
% operator.Source§impl Rem<ContinuousResourceVariable> for Continuous
impl Rem<ContinuousResourceVariable> for Continuous
Source§fn rem(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn rem(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Returns an expression representing the remainder.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
% operator.Source§impl Rem<ContinuousResourceVariable> for Integer
impl Rem<ContinuousResourceVariable> for Integer
Source§fn rem(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn rem(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Returns an expression representing the remainder.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
% operator.Source§impl Rem<ContinuousVariable> for ContinuousResourceVariable
impl Rem<ContinuousVariable> for ContinuousResourceVariable
Source§fn rem(self, rhs: ContinuousVariable) -> ContinuousExpression
fn rem(self, rhs: ContinuousVariable) -> ContinuousExpression
Returns an expression representing the remainder.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
% operator.Source§impl Rem<IntegerExpression> for ContinuousResourceVariable
impl Rem<IntegerExpression> for ContinuousResourceVariable
Source§fn rem(self, rhs: IntegerExpression) -> ContinuousExpression
fn rem(self, rhs: IntegerExpression) -> ContinuousExpression
Returns an expression representing the remainder.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
% operator.Source§impl Rem<IntegerResourceVariable> for ContinuousResourceVariable
impl Rem<IntegerResourceVariable> for ContinuousResourceVariable
Source§fn rem(self, rhs: IntegerResourceVariable) -> ContinuousExpression
fn rem(self, rhs: IntegerResourceVariable) -> ContinuousExpression
Returns an expression representing the remainder.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
% operator.Source§impl Rem<IntegerVariable> for ContinuousResourceVariable
impl Rem<IntegerVariable> for ContinuousResourceVariable
Source§fn rem(self, rhs: IntegerVariable) -> ContinuousExpression
fn rem(self, rhs: IntegerVariable) -> ContinuousExpression
Returns an expression representing the remainder.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
% operator.Source§impl Rem<f64> for ContinuousResourceVariable
impl Rem<f64> for ContinuousResourceVariable
Source§fn rem(self, rhs: Continuous) -> ContinuousExpression
fn rem(self, rhs: Continuous) -> ContinuousExpression
Returns an expression representing the remainder.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
% operator.Source§impl Rem<i32> for ContinuousResourceVariable
impl Rem<i32> for ContinuousResourceVariable
Source§fn rem(self, rhs: Integer) -> ContinuousExpression
fn rem(self, rhs: Integer) -> ContinuousExpression
Returns an expression representing the remainder.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
% operator.Source§impl Rem for ContinuousResourceVariable
impl Rem for ContinuousResourceVariable
Source§fn rem(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn rem(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Returns an expression representing the remainder.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
% operator.Source§impl Sub<ContinuousExpression> for ContinuousResourceVariable
impl Sub<ContinuousExpression> for ContinuousResourceVariable
Source§fn sub(self, rhs: ContinuousExpression) -> ContinuousExpression
fn sub(self, rhs: ContinuousExpression) -> ContinuousExpression
Returns an expression representing the subtraction.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
- operator.Source§impl Sub<ContinuousResourceVariable> for ContinuousExpression
impl Sub<ContinuousResourceVariable> for ContinuousExpression
Source§fn sub(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn sub(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Returns an expression representing the subtraction.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
- operator.Source§impl Sub<ContinuousResourceVariable> for ContinuousVariable
impl Sub<ContinuousResourceVariable> for ContinuousVariable
Source§fn sub(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn sub(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Returns an expression representing the subtraction.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
- operator.Source§impl Sub<ContinuousResourceVariable> for IntegerExpression
impl Sub<ContinuousResourceVariable> for IntegerExpression
Source§fn sub(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn sub(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Returns an expression representing the subtraction.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
- operator.Source§impl Sub<ContinuousResourceVariable> for IntegerResourceVariable
impl Sub<ContinuousResourceVariable> for IntegerResourceVariable
Source§fn sub(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn sub(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Returns an expression representing the subtraction.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
- operator.Source§impl Sub<ContinuousResourceVariable> for IntegerVariable
impl Sub<ContinuousResourceVariable> for IntegerVariable
Source§fn sub(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn sub(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Returns an expression representing the subtraction.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
- operator.Source§impl Sub<ContinuousResourceVariable> for Continuous
impl Sub<ContinuousResourceVariable> for Continuous
Source§fn sub(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn sub(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Returns an expression representing the subtraction.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
- operator.Source§impl Sub<ContinuousResourceVariable> for Integer
impl Sub<ContinuousResourceVariable> for Integer
Source§fn sub(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn sub(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Returns an expression representing the subtraction.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
- operator.Source§impl Sub<ContinuousVariable> for ContinuousResourceVariable
impl Sub<ContinuousVariable> for ContinuousResourceVariable
Source§fn sub(self, rhs: ContinuousVariable) -> ContinuousExpression
fn sub(self, rhs: ContinuousVariable) -> ContinuousExpression
Returns an expression representing the subtraction.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
- operator.Source§impl Sub<IntegerExpression> for ContinuousResourceVariable
impl Sub<IntegerExpression> for ContinuousResourceVariable
Source§fn sub(self, rhs: IntegerExpression) -> ContinuousExpression
fn sub(self, rhs: IntegerExpression) -> ContinuousExpression
Returns an expression representing the subtraction.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
- operator.Source§impl Sub<IntegerResourceVariable> for ContinuousResourceVariable
impl Sub<IntegerResourceVariable> for ContinuousResourceVariable
Source§fn sub(self, rhs: IntegerResourceVariable) -> ContinuousExpression
fn sub(self, rhs: IntegerResourceVariable) -> ContinuousExpression
Returns an expression representing the subtraction.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
- operator.Source§impl Sub<IntegerVariable> for ContinuousResourceVariable
impl Sub<IntegerVariable> for ContinuousResourceVariable
Source§fn sub(self, rhs: IntegerVariable) -> ContinuousExpression
fn sub(self, rhs: IntegerVariable) -> ContinuousExpression
Returns an expression representing the subtraction.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
- operator.Source§impl Sub<f64> for ContinuousResourceVariable
impl Sub<f64> for ContinuousResourceVariable
Source§fn sub(self, rhs: Continuous) -> ContinuousExpression
fn sub(self, rhs: Continuous) -> ContinuousExpression
Returns an expression representing the subtraction.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
- operator.Source§impl Sub<i32> for ContinuousResourceVariable
impl Sub<i32> for ContinuousResourceVariable
Source§fn sub(self, rhs: Integer) -> ContinuousExpression
fn sub(self, rhs: Integer) -> ContinuousExpression
Returns an expression representing the subtraction.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
- operator.Source§impl Sub for ContinuousResourceVariable
impl Sub for ContinuousResourceVariable
Source§fn sub(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
fn sub(self, rhs: ContinuousResourceVariable) -> ContinuousExpression
Returns an expression representing the subtraction.
Source§type Output = ContinuousExpression
type Output = ContinuousExpression
- operator.