pub enum ConstantOp {
    Add,
    Sub,
}
Expand description

Operations performed on the constant portion of the conversion factor. Used to help guide optimizations when floating point underlying storage types are used.

For a value, v: Float, adding -0.0 is a no-op while adding 0.0 will change the sign if v is -0.0. The opposite is true for subtraction.

   v
 0.0 + -0.0 =  0.0
-0.0 +  0.0 =  0.0 // v +  0.0 != v
-0.0 + -0.0 = -0.0
 0.0 - -0.0 =  0.0
-0.0 -  0.0 =  0.0
-0.0 - -0.0 =  0.0 // v - -0.0 != v

Variants

Add

Hint that the constant is being added to a value.

Sub

Hint that the constant is being subtracted from a value.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Should always be Self

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.