pub trait DivRoundAssign<RHS = Self> {
    fn div_round_assign(&mut self, other: RHS, rm: RoundingMode);
}
Expand description

Divides a number by another number in place and rounds according to a specified rounding mode.

Required Methods

Implementations on Foreign Types

Divides a value by another value in place and rounds according to a specified rounding mode.

See the DivRound documentation for details.

Worst-case complexity

Constant time and additional memory.

Panics

Panics if other is zero, or if rm is Exact but self is not divisible by other.

Examples

See here.

Divides a value by another value in place and rounds according to a specified rounding mode.

See the DivRound documentation for details.

Worst-case complexity

Constant time and additional memory.

Panics

Panics if other is zero, or if rm is Exact but self is not divisible by other.

Examples

See here.

Divides a value by another value in place and rounds according to a specified rounding mode.

See the DivRound documentation for details.

Worst-case complexity

Constant time and additional memory.

Panics

Panics if other is zero, or if rm is Exact but self is not divisible by other.

Examples

See here.

Divides a value by another value in place and rounds according to a specified rounding mode.

See the DivRound documentation for details.

Worst-case complexity

Constant time and additional memory.

Panics

Panics if other is zero, or if rm is Exact but self is not divisible by other.

Examples

See here.

Divides a value by another value in place and rounds according to a specified rounding mode.

See the DivRound documentation for details.

Worst-case complexity

Constant time and additional memory.

Panics

Panics if other is zero, or if rm is Exact but self is not divisible by other.

Examples

See here.

Divides a value by another value in place and rounds according to a specified rounding mode.

See the DivRound documentation for details.

Worst-case complexity

Constant time and additional memory.

Panics

Panics if other is zero, or if rm is Exact but self is not divisible by other.

Examples

See here.

Divides a value by another value in place and rounds according to a specified rounding mode.

See the DivRound documentation for details.

Worst-case complexity

Constant time and additional memory.

Panics

Panics if other is zero, if self is Self::MIN and other is -1, or if rm is Exact but self is not divisible by other.

Examples

See here.

Divides a value by another value in place and rounds according to a specified rounding mode.

See the DivRound documentation for details.

Worst-case complexity

Constant time and additional memory.

Panics

Panics if other is zero, if self is Self::MIN and other is -1, or if rm is Exact but self is not divisible by other.

Examples

See here.

Divides a value by another value in place and rounds according to a specified rounding mode.

See the DivRound documentation for details.

Worst-case complexity

Constant time and additional memory.

Panics

Panics if other is zero, if self is Self::MIN and other is -1, or if rm is Exact but self is not divisible by other.

Examples

See here.

Divides a value by another value in place and rounds according to a specified rounding mode.

See the DivRound documentation for details.

Worst-case complexity

Constant time and additional memory.

Panics

Panics if other is zero, if self is Self::MIN and other is -1, or if rm is Exact but self is not divisible by other.

Examples

See here.

Divides a value by another value in place and rounds according to a specified rounding mode.

See the DivRound documentation for details.

Worst-case complexity

Constant time and additional memory.

Panics

Panics if other is zero, if self is Self::MIN and other is -1, or if rm is Exact but self is not divisible by other.

Examples

See here.

Divides a value by another value in place and rounds according to a specified rounding mode.

See the DivRound documentation for details.

Worst-case complexity

Constant time and additional memory.

Panics

Panics if other is zero, if self is Self::MIN and other is -1, or if rm is Exact but self is not divisible by other.

Examples

See here.

Implementors