1.0.0[−][src]Trait std::ops::Rem
The remainder operator %.
Note that RHS is Self by default, but this is not mandatory.
Examples
This example implements Rem on a SplitSlice object. After Rem is
implemented, one can use the % operator to find out what the remaining
elements of the slice would be after splitting it into equal slices of a
given length.
use std::ops::Rem; #[derive(PartialEq, Debug)] struct SplitSlice<'a, T: 'a> { slice: &'a [T], } impl<'a, T> Rem<usize> for SplitSlice<'a, T> { type Output = SplitSlice<'a, T>; fn rem(self, modulus: usize) -> Self { let len = self.slice.len(); let rem = len % modulus; let start = len - rem; SplitSlice {slice: &self.slice[start..]} } } // If we were to divide &[0, 1, 2, 3, 4, 5, 6, 7] into slices of size 3, // the remainder would be &[6, 7]. assert_eq!(SplitSlice { slice: &[0, 1, 2, 3, 4, 5, 6, 7] } % 3, SplitSlice { slice: &[6, 7] });Run
Associated Types
type Output = Self
The resulting type after applying the % operator.
Required Methods
Implementors
impl Rem<f32> for f32[src]
impl Rem<f32> for f32impl Rem<f64> for f64[src]
impl Rem<f64> for f64impl Rem<i128> for i128[src]
impl Rem<i128> for i128This operation satisfies n % d == n - (n / d) * d. The
result has the same sign as the left operand.
impl Rem<i16> for i16[src]
impl Rem<i16> for i16This operation satisfies n % d == n - (n / d) * d. The
result has the same sign as the left operand.
impl Rem<i32> for i32[src]
impl Rem<i32> for i32This operation satisfies n % d == n - (n / d) * d. The
result has the same sign as the left operand.
impl Rem<i64> for i64[src]
impl Rem<i64> for i64This operation satisfies n % d == n - (n / d) * d. The
result has the same sign as the left operand.
impl Rem<i8> for i8[src]
impl Rem<i8> for i8This operation satisfies n % d == n - (n / d) * d. The
result has the same sign as the left operand.
impl Rem<isize> for isize[src]
impl Rem<isize> for isizeThis operation satisfies n % d == n - (n / d) * d. The
result has the same sign as the left operand.
impl Rem<u128> for u128[src]
impl Rem<u128> for u128This operation satisfies n % d == n - (n / d) * d. The
result has the same sign as the left operand.
impl Rem<u16> for u16[src]
impl Rem<u16> for u16This operation satisfies n % d == n - (n / d) * d. The
result has the same sign as the left operand.
impl Rem<u32> for u32[src]
impl Rem<u32> for u32This operation satisfies n % d == n - (n / d) * d. The
result has the same sign as the left operand.
impl Rem<u64> for u64[src]
impl Rem<u64> for u64This operation satisfies n % d == n - (n / d) * d. The
result has the same sign as the left operand.
impl Rem<u8> for u8[src]
impl Rem<u8> for u8This operation satisfies n % d == n - (n / d) * d. The
result has the same sign as the left operand.
impl Rem<usize> for usize[src]
impl Rem<usize> for usizeThis operation satisfies n % d == n - (n / d) * d. The
result has the same sign as the left operand.
impl Rem<Wrapping<i128>> for Wrapping<i128>[src]
impl Rem<Wrapping<i128>> for Wrapping<i128>impl Rem<Wrapping<i16>> for Wrapping<i16>[src]
impl Rem<Wrapping<i16>> for Wrapping<i16>impl Rem<Wrapping<i32>> for Wrapping<i32>[src]
impl Rem<Wrapping<i32>> for Wrapping<i32>impl Rem<Wrapping<i64>> for Wrapping<i64>[src]
impl Rem<Wrapping<i64>> for Wrapping<i64>impl Rem<Wrapping<i8>> for Wrapping<i8>[src]
impl Rem<Wrapping<i8>> for Wrapping<i8>impl Rem<Wrapping<isize>> for Wrapping<isize>[src]
impl Rem<Wrapping<isize>> for Wrapping<isize>impl Rem<Wrapping<u128>> for Wrapping<u128>[src]
impl Rem<Wrapping<u128>> for Wrapping<u128>impl Rem<Wrapping<u16>> for Wrapping<u16>[src]
impl Rem<Wrapping<u16>> for Wrapping<u16>impl Rem<Wrapping<u32>> for Wrapping<u32>[src]
impl Rem<Wrapping<u32>> for Wrapping<u32>impl Rem<Wrapping<u64>> for Wrapping<u64>[src]
impl Rem<Wrapping<u64>> for Wrapping<u64>impl Rem<Wrapping<u8>> for Wrapping<u8>[src]
impl Rem<Wrapping<u8>> for Wrapping<u8>impl Rem<Wrapping<usize>> for Wrapping<usize>[src]
impl Rem<Wrapping<usize>> for Wrapping<usize>impl<'a> Rem<&'a f32> for f32[src]
impl<'a> Rem<&'a f32> for f32type Output = <f32 as Rem<f32>>::Output
fn rem(self, other: &'a f32) -> <f32 as Rem<f32>>::Output[src]
fn rem(self, other: &'a f32) -> <f32 as Rem<f32>>::Outputimpl<'a> Rem<&'a f64> for f64[src]
impl<'a> Rem<&'a f64> for f64type Output = <f64 as Rem<f64>>::Output
fn rem(self, other: &'a f64) -> <f64 as Rem<f64>>::Output[src]
fn rem(self, other: &'a f64) -> <f64 as Rem<f64>>::Outputimpl<'a> Rem<&'a i128> for i128[src]
impl<'a> Rem<&'a i128> for i128type Output = <i128 as Rem<i128>>::Output
fn rem(self, other: &'a i128) -> <i128 as Rem<i128>>::Output[src]
fn rem(self, other: &'a i128) -> <i128 as Rem<i128>>::Outputimpl<'a> Rem<&'a i16> for i16[src]
impl<'a> Rem<&'a i16> for i16type Output = <i16 as Rem<i16>>::Output
fn rem(self, other: &'a i16) -> <i16 as Rem<i16>>::Output[src]
fn rem(self, other: &'a i16) -> <i16 as Rem<i16>>::Outputimpl<'a> Rem<&'a i32> for i32[src]
impl<'a> Rem<&'a i32> for i32type Output = <i32 as Rem<i32>>::Output
fn rem(self, other: &'a i32) -> <i32 as Rem<i32>>::Output[src]
fn rem(self, other: &'a i32) -> <i32 as Rem<i32>>::Outputimpl<'a> Rem<&'a i64> for i64[src]
impl<'a> Rem<&'a i64> for i64type Output = <i64 as Rem<i64>>::Output
fn rem(self, other: &'a i64) -> <i64 as Rem<i64>>::Output[src]
fn rem(self, other: &'a i64) -> <i64 as Rem<i64>>::Outputimpl<'a> Rem<&'a i8> for i8[src]
impl<'a> Rem<&'a i8> for i8impl<'a> Rem<&'a isize> for isize[src]
impl<'a> Rem<&'a isize> for isizetype Output = <isize as Rem<isize>>::Output
fn rem(self, other: &'a isize) -> <isize as Rem<isize>>::Output[src]
fn rem(self, other: &'a isize) -> <isize as Rem<isize>>::Outputimpl<'a> Rem<&'a u128> for u128[src]
impl<'a> Rem<&'a u128> for u128type Output = <u128 as Rem<u128>>::Output
fn rem(self, other: &'a u128) -> <u128 as Rem<u128>>::Output[src]
fn rem(self, other: &'a u128) -> <u128 as Rem<u128>>::Outputimpl<'a> Rem<&'a u16> for u16[src]
impl<'a> Rem<&'a u16> for u16type Output = <u16 as Rem<u16>>::Output
fn rem(self, other: &'a u16) -> <u16 as Rem<u16>>::Output[src]
fn rem(self, other: &'a u16) -> <u16 as Rem<u16>>::Outputimpl<'a> Rem<&'a u32> for u32[src]
impl<'a> Rem<&'a u32> for u32type Output = <u32 as Rem<u32>>::Output
fn rem(self, other: &'a u32) -> <u32 as Rem<u32>>::Output[src]
fn rem(self, other: &'a u32) -> <u32 as Rem<u32>>::Outputimpl<'a> Rem<&'a u64> for u64[src]
impl<'a> Rem<&'a u64> for u64type Output = <u64 as Rem<u64>>::Output
fn rem(self, other: &'a u64) -> <u64 as Rem<u64>>::Output[src]
fn rem(self, other: &'a u64) -> <u64 as Rem<u64>>::Outputimpl<'a> Rem<&'a u8> for u8[src]
impl<'a> Rem<&'a u8> for u8impl<'a> Rem<&'a usize> for usize[src]
impl<'a> Rem<&'a usize> for usizetype Output = <usize as Rem<usize>>::Output
fn rem(self, other: &'a usize) -> <usize as Rem<usize>>::Output[src]
fn rem(self, other: &'a usize) -> <usize as Rem<usize>>::Outputimpl<'a> Rem<&'a Wrapping<i128>> for Wrapping<i128>[src]
impl<'a> Rem<&'a Wrapping<i128>> for Wrapping<i128>type Output = <Wrapping<i128> as Rem<Wrapping<i128>>>::Output
fn rem(
self,
other: &'a Wrapping<i128>
) -> <Wrapping<i128> as Rem<Wrapping<i128>>>::Output[src]
fn rem(
self,
other: &'a Wrapping<i128>
) -> <Wrapping<i128> as Rem<Wrapping<i128>>>::Outputimpl<'a> Rem<&'a Wrapping<i16>> for Wrapping<i16>[src]
impl<'a> Rem<&'a Wrapping<i16>> for Wrapping<i16>type Output = <Wrapping<i16> as Rem<Wrapping<i16>>>::Output
fn rem(
self,
other: &'a Wrapping<i16>
) -> <Wrapping<i16> as Rem<Wrapping<i16>>>::Output[src]
fn rem(
self,
other: &'a Wrapping<i16>
) -> <Wrapping<i16> as Rem<Wrapping<i16>>>::Outputimpl<'a> Rem<&'a Wrapping<i32>> for Wrapping<i32>[src]
impl<'a> Rem<&'a Wrapping<i32>> for Wrapping<i32>type Output = <Wrapping<i32> as Rem<Wrapping<i32>>>::Output
fn rem(
self,
other: &'a Wrapping<i32>
) -> <Wrapping<i32> as Rem<Wrapping<i32>>>::Output[src]
fn rem(
self,
other: &'a Wrapping<i32>
) -> <Wrapping<i32> as Rem<Wrapping<i32>>>::Outputimpl<'a> Rem<&'a Wrapping<i64>> for Wrapping<i64>[src]
impl<'a> Rem<&'a Wrapping<i64>> for Wrapping<i64>type Output = <Wrapping<i64> as Rem<Wrapping<i64>>>::Output
fn rem(
self,
other: &'a Wrapping<i64>
) -> <Wrapping<i64> as Rem<Wrapping<i64>>>::Output[src]
fn rem(
self,
other: &'a Wrapping<i64>
) -> <Wrapping<i64> as Rem<Wrapping<i64>>>::Outputimpl<'a> Rem<&'a Wrapping<i8>> for Wrapping<i8>[src]
impl<'a> Rem<&'a Wrapping<i8>> for Wrapping<i8>type Output = <Wrapping<i8> as Rem<Wrapping<i8>>>::Output
fn rem(
self,
other: &'a Wrapping<i8>
) -> <Wrapping<i8> as Rem<Wrapping<i8>>>::Output[src]
fn rem(
self,
other: &'a Wrapping<i8>
) -> <Wrapping<i8> as Rem<Wrapping<i8>>>::Outputimpl<'a> Rem<&'a Wrapping<isize>> for Wrapping<isize>[src]
impl<'a> Rem<&'a Wrapping<isize>> for Wrapping<isize>type Output = <Wrapping<isize> as Rem<Wrapping<isize>>>::Output
fn rem(
self,
other: &'a Wrapping<isize>
) -> <Wrapping<isize> as Rem<Wrapping<isize>>>::Output[src]
fn rem(
self,
other: &'a Wrapping<isize>
) -> <Wrapping<isize> as Rem<Wrapping<isize>>>::Outputimpl<'a> Rem<&'a Wrapping<u128>> for Wrapping<u128>[src]
impl<'a> Rem<&'a Wrapping<u128>> for Wrapping<u128>type Output = <Wrapping<u128> as Rem<Wrapping<u128>>>::Output
fn rem(
self,
other: &'a Wrapping<u128>
) -> <Wrapping<u128> as Rem<Wrapping<u128>>>::Output[src]
fn rem(
self,
other: &'a Wrapping<u128>
) -> <Wrapping<u128> as Rem<Wrapping<u128>>>::Outputimpl<'a> Rem<&'a Wrapping<u16>> for Wrapping<u16>[src]
impl<'a> Rem<&'a Wrapping<u16>> for Wrapping<u16>type Output = <Wrapping<u16> as Rem<Wrapping<u16>>>::Output
fn rem(
self,
other: &'a Wrapping<u16>
) -> <Wrapping<u16> as Rem<Wrapping<u16>>>::Output[src]
fn rem(
self,
other: &'a Wrapping<u16>
) -> <Wrapping<u16> as Rem<Wrapping<u16>>>::Outputimpl<'a> Rem<&'a Wrapping<u32>> for Wrapping<u32>[src]
impl<'a> Rem<&'a Wrapping<u32>> for Wrapping<u32>type Output = <Wrapping<u32> as Rem<Wrapping<u32>>>::Output
fn rem(
self,
other: &'a Wrapping<u32>
) -> <Wrapping<u32> as Rem<Wrapping<u32>>>::Output[src]
fn rem(
self,
other: &'a Wrapping<u32>
) -> <Wrapping<u32> as Rem<Wrapping<u32>>>::Outputimpl<'a> Rem<&'a Wrapping<u64>> for Wrapping<u64>[src]
impl<'a> Rem<&'a Wrapping<u64>> for Wrapping<u64>type Output = <Wrapping<u64> as Rem<Wrapping<u64>>>::Output
fn rem(
self,
other: &'a Wrapping<u64>
) -> <Wrapping<u64> as Rem<Wrapping<u64>>>::Output[src]
fn rem(
self,
other: &'a Wrapping<u64>
) -> <Wrapping<u64> as Rem<Wrapping<u64>>>::Outputimpl<'a> Rem<&'a Wrapping<u8>> for Wrapping<u8>[src]
impl<'a> Rem<&'a Wrapping<u8>> for Wrapping<u8>type Output = <Wrapping<u8> as Rem<Wrapping<u8>>>::Output
fn rem(
self,
other: &'a Wrapping<u8>
) -> <Wrapping<u8> as Rem<Wrapping<u8>>>::Output[src]
fn rem(
self,
other: &'a Wrapping<u8>
) -> <Wrapping<u8> as Rem<Wrapping<u8>>>::Outputimpl<'a> Rem<&'a Wrapping<usize>> for Wrapping<usize>[src]
impl<'a> Rem<&'a Wrapping<usize>> for Wrapping<usize>type Output = <Wrapping<usize> as Rem<Wrapping<usize>>>::Output
fn rem(
self,
other: &'a Wrapping<usize>
) -> <Wrapping<usize> as Rem<Wrapping<usize>>>::Output[src]
fn rem(
self,
other: &'a Wrapping<usize>
) -> <Wrapping<usize> as Rem<Wrapping<usize>>>::Outputimpl<'a> Rem<f32> for &'a f32[src]
impl<'a> Rem<f32> for &'a f32impl<'a> Rem<f64> for &'a f64[src]
impl<'a> Rem<f64> for &'a f64impl<'a> Rem<i128> for &'a i128[src]
impl<'a> Rem<i128> for &'a i128type Output = <i128 as Rem<i128>>::Output
fn rem(self, other: i128) -> <i128 as Rem<i128>>::Output[src]
fn rem(self, other: i128) -> <i128 as Rem<i128>>::Outputimpl<'a> Rem<i16> for &'a i16[src]
impl<'a> Rem<i16> for &'a i16impl<'a> Rem<i32> for &'a i32[src]
impl<'a> Rem<i32> for &'a i32impl<'a> Rem<i64> for &'a i64[src]
impl<'a> Rem<i64> for &'a i64impl<'a> Rem<i8> for &'a i8[src]
impl<'a> Rem<i8> for &'a i8impl<'a> Rem<isize> for &'a isize[src]
impl<'a> Rem<isize> for &'a isizetype Output = <isize as Rem<isize>>::Output
fn rem(self, other: isize) -> <isize as Rem<isize>>::Output[src]
fn rem(self, other: isize) -> <isize as Rem<isize>>::Outputimpl<'a> Rem<u128> for &'a u128[src]
impl<'a> Rem<u128> for &'a u128type Output = <u128 as Rem<u128>>::Output
fn rem(self, other: u128) -> <u128 as Rem<u128>>::Output[src]
fn rem(self, other: u128) -> <u128 as Rem<u128>>::Outputimpl<'a> Rem<u16> for &'a u16[src]
impl<'a> Rem<u16> for &'a u16impl<'a> Rem<u32> for &'a u32[src]
impl<'a> Rem<u32> for &'a u32impl<'a> Rem<u64> for &'a u64[src]
impl<'a> Rem<u64> for &'a u64impl<'a> Rem<u8> for &'a u8[src]
impl<'a> Rem<u8> for &'a u8impl<'a> Rem<usize> for &'a usize[src]
impl<'a> Rem<usize> for &'a usizetype Output = <usize as Rem<usize>>::Output
fn rem(self, other: usize) -> <usize as Rem<usize>>::Output[src]
fn rem(self, other: usize) -> <usize as Rem<usize>>::Outputimpl<'a> Rem<Wrapping<i128>> for &'a Wrapping<i128>[src]
impl<'a> Rem<Wrapping<i128>> for &'a Wrapping<i128>type Output = <Wrapping<i128> as Rem<Wrapping<i128>>>::Output
fn rem(
self,
other: Wrapping<i128>
) -> <Wrapping<i128> as Rem<Wrapping<i128>>>::Output[src]
fn rem(
self,
other: Wrapping<i128>
) -> <Wrapping<i128> as Rem<Wrapping<i128>>>::Outputimpl<'a> Rem<Wrapping<i16>> for &'a Wrapping<i16>[src]
impl<'a> Rem<Wrapping<i16>> for &'a Wrapping<i16>type Output = <Wrapping<i16> as Rem<Wrapping<i16>>>::Output
fn rem(
self,
other: Wrapping<i16>
) -> <Wrapping<i16> as Rem<Wrapping<i16>>>::Output[src]
fn rem(
self,
other: Wrapping<i16>
) -> <Wrapping<i16> as Rem<Wrapping<i16>>>::Outputimpl<'a> Rem<Wrapping<i32>> for &'a Wrapping<i32>[src]
impl<'a> Rem<Wrapping<i32>> for &'a Wrapping<i32>type Output = <Wrapping<i32> as Rem<Wrapping<i32>>>::Output
fn rem(
self,
other: Wrapping<i32>
) -> <Wrapping<i32> as Rem<Wrapping<i32>>>::Output[src]
fn rem(
self,
other: Wrapping<i32>
) -> <Wrapping<i32> as Rem<Wrapping<i32>>>::Outputimpl<'a> Rem<Wrapping<i64>> for &'a Wrapping<i64>[src]
impl<'a> Rem<Wrapping<i64>> for &'a Wrapping<i64>type Output = <Wrapping<i64> as Rem<Wrapping<i64>>>::Output
fn rem(
self,
other: Wrapping<i64>
) -> <Wrapping<i64> as Rem<Wrapping<i64>>>::Output[src]
fn rem(
self,
other: Wrapping<i64>
) -> <Wrapping<i64> as Rem<Wrapping<i64>>>::Outputimpl<'a> Rem<Wrapping<i8>> for &'a Wrapping<i8>[src]
impl<'a> Rem<Wrapping<i8>> for &'a Wrapping<i8>type Output = <Wrapping<i8> as Rem<Wrapping<i8>>>::Output
fn rem(self, other: Wrapping<i8>) -> <Wrapping<i8> as Rem<Wrapping<i8>>>::Output[src]
fn rem(self, other: Wrapping<i8>) -> <Wrapping<i8> as Rem<Wrapping<i8>>>::Outputimpl<'a> Rem<Wrapping<isize>> for &'a Wrapping<isize>[src]
impl<'a> Rem<Wrapping<isize>> for &'a Wrapping<isize>type Output = <Wrapping<isize> as Rem<Wrapping<isize>>>::Output
fn rem(
self,
other: Wrapping<isize>
) -> <Wrapping<isize> as Rem<Wrapping<isize>>>::Output[src]
fn rem(
self,
other: Wrapping<isize>
) -> <Wrapping<isize> as Rem<Wrapping<isize>>>::Outputimpl<'a> Rem<Wrapping<u128>> for &'a Wrapping<u128>[src]
impl<'a> Rem<Wrapping<u128>> for &'a Wrapping<u128>type Output = <Wrapping<u128> as Rem<Wrapping<u128>>>::Output
fn rem(
self,
other: Wrapping<u128>
) -> <Wrapping<u128> as Rem<Wrapping<u128>>>::Output[src]
fn rem(
self,
other: Wrapping<u128>
) -> <Wrapping<u128> as Rem<Wrapping<u128>>>::Outputimpl<'a> Rem<Wrapping<u16>> for &'a Wrapping<u16>[src]
impl<'a> Rem<Wrapping<u16>> for &'a Wrapping<u16>type Output = <Wrapping<u16> as Rem<Wrapping<u16>>>::Output
fn rem(
self,
other: Wrapping<u16>
) -> <Wrapping<u16> as Rem<Wrapping<u16>>>::Output[src]
fn rem(
self,
other: Wrapping<u16>
) -> <Wrapping<u16> as Rem<Wrapping<u16>>>::Outputimpl<'a> Rem<Wrapping<u32>> for &'a Wrapping<u32>[src]
impl<'a> Rem<Wrapping<u32>> for &'a Wrapping<u32>type Output = <Wrapping<u32> as Rem<Wrapping<u32>>>::Output
fn rem(
self,
other: Wrapping<u32>
) -> <Wrapping<u32> as Rem<Wrapping<u32>>>::Output[src]
fn rem(
self,
other: Wrapping<u32>
) -> <Wrapping<u32> as Rem<Wrapping<u32>>>::Outputimpl<'a> Rem<Wrapping<u64>> for &'a Wrapping<u64>[src]
impl<'a> Rem<Wrapping<u64>> for &'a Wrapping<u64>type Output = <Wrapping<u64> as Rem<Wrapping<u64>>>::Output
fn rem(
self,
other: Wrapping<u64>
) -> <Wrapping<u64> as Rem<Wrapping<u64>>>::Output[src]
fn rem(
self,
other: Wrapping<u64>
) -> <Wrapping<u64> as Rem<Wrapping<u64>>>::Outputimpl<'a> Rem<Wrapping<u8>> for &'a Wrapping<u8>[src]
impl<'a> Rem<Wrapping<u8>> for &'a Wrapping<u8>type Output = <Wrapping<u8> as Rem<Wrapping<u8>>>::Output
fn rem(self, other: Wrapping<u8>) -> <Wrapping<u8> as Rem<Wrapping<u8>>>::Output[src]
fn rem(self, other: Wrapping<u8>) -> <Wrapping<u8> as Rem<Wrapping<u8>>>::Outputimpl<'a> Rem<Wrapping<usize>> for &'a Wrapping<usize>[src]
impl<'a> Rem<Wrapping<usize>> for &'a Wrapping<usize>type Output = <Wrapping<usize> as Rem<Wrapping<usize>>>::Output
fn rem(
self,
other: Wrapping<usize>
) -> <Wrapping<usize> as Rem<Wrapping<usize>>>::Output[src]
fn rem(
self,
other: Wrapping<usize>
) -> <Wrapping<usize> as Rem<Wrapping<usize>>>::Outputimpl<'a, 'b> Rem<&'a f32> for &'b f32[src]
impl<'a, 'b> Rem<&'a f32> for &'b f32type Output = <f32 as Rem<f32>>::Output
fn rem(self, other: &'a f32) -> <f32 as Rem<f32>>::Output[src]
fn rem(self, other: &'a f32) -> <f32 as Rem<f32>>::Outputimpl<'a, 'b> Rem<&'a f64> for &'b f64[src]
impl<'a, 'b> Rem<&'a f64> for &'b f64type Output = <f64 as Rem<f64>>::Output
fn rem(self, other: &'a f64) -> <f64 as Rem<f64>>::Output[src]
fn rem(self, other: &'a f64) -> <f64 as Rem<f64>>::Outputimpl<'a, 'b> Rem<&'a i128> for &'b i128[src]
impl<'a, 'b> Rem<&'a i128> for &'b i128type Output = <i128 as Rem<i128>>::Output
fn rem(self, other: &'a i128) -> <i128 as Rem<i128>>::Output[src]
fn rem(self, other: &'a i128) -> <i128 as Rem<i128>>::Outputimpl<'a, 'b> Rem<&'a i16> for &'b i16[src]
impl<'a, 'b> Rem<&'a i16> for &'b i16type Output = <i16 as Rem<i16>>::Output
fn rem(self, other: &'a i16) -> <i16 as Rem<i16>>::Output[src]
fn rem(self, other: &'a i16) -> <i16 as Rem<i16>>::Outputimpl<'a, 'b> Rem<&'a i32> for &'b i32[src]
impl<'a, 'b> Rem<&'a i32> for &'b i32type Output = <i32 as Rem<i32>>::Output
fn rem(self, other: &'a i32) -> <i32 as Rem<i32>>::Output[src]
fn rem(self, other: &'a i32) -> <i32 as Rem<i32>>::Outputimpl<'a, 'b> Rem<&'a i64> for &'b i64[src]
impl<'a, 'b> Rem<&'a i64> for &'b i64type Output = <i64 as Rem<i64>>::Output
fn rem(self, other: &'a i64) -> <i64 as Rem<i64>>::Output[src]
fn rem(self, other: &'a i64) -> <i64 as Rem<i64>>::Outputimpl<'a, 'b> Rem<&'a i8> for &'b i8[src]
impl<'a, 'b> Rem<&'a i8> for &'b i8impl<'a, 'b> Rem<&'a isize> for &'b isize[src]
impl<'a, 'b> Rem<&'a isize> for &'b isizetype Output = <isize as Rem<isize>>::Output
fn rem(self, other: &'a isize) -> <isize as Rem<isize>>::Output[src]
fn rem(self, other: &'a isize) -> <isize as Rem<isize>>::Outputimpl<'a, 'b> Rem<&'a u128> for &'b u128[src]
impl<'a, 'b> Rem<&'a u128> for &'b u128type Output = <u128 as Rem<u128>>::Output
fn rem(self, other: &'a u128) -> <u128 as Rem<u128>>::Output[src]
fn rem(self, other: &'a u128) -> <u128 as Rem<u128>>::Outputimpl<'a, 'b> Rem<&'a u16> for &'b u16[src]
impl<'a, 'b> Rem<&'a u16> for &'b u16type Output = <u16 as Rem<u16>>::Output
fn rem(self, other: &'a u16) -> <u16 as Rem<u16>>::Output[src]
fn rem(self, other: &'a u16) -> <u16 as Rem<u16>>::Outputimpl<'a, 'b> Rem<&'a u32> for &'b u32[src]
impl<'a, 'b> Rem<&'a u32> for &'b u32type Output = <u32 as Rem<u32>>::Output
fn rem(self, other: &'a u32) -> <u32 as Rem<u32>>::Output[src]
fn rem(self, other: &'a u32) -> <u32 as Rem<u32>>::Outputimpl<'a, 'b> Rem<&'a u64> for &'b u64[src]
impl<'a, 'b> Rem<&'a u64> for &'b u64type Output = <u64 as Rem<u64>>::Output
fn rem(self, other: &'a u64) -> <u64 as Rem<u64>>::Output[src]
fn rem(self, other: &'a u64) -> <u64 as Rem<u64>>::Outputimpl<'a, 'b> Rem<&'a u8> for &'b u8[src]
impl<'a, 'b> Rem<&'a u8> for &'b u8impl<'a, 'b> Rem<&'a usize> for &'b usize[src]
impl<'a, 'b> Rem<&'a usize> for &'b usizetype Output = <usize as Rem<usize>>::Output
fn rem(self, other: &'a usize) -> <usize as Rem<usize>>::Output[src]
fn rem(self, other: &'a usize) -> <usize as Rem<usize>>::Outputimpl<'a, 'b> Rem<&'a Wrapping<i128>> for &'b Wrapping<i128>[src]
impl<'a, 'b> Rem<&'a Wrapping<i128>> for &'b Wrapping<i128>type Output = <Wrapping<i128> as Rem<Wrapping<i128>>>::Output
fn rem(
self,
other: &'a Wrapping<i128>
) -> <Wrapping<i128> as Rem<Wrapping<i128>>>::Output[src]
fn rem(
self,
other: &'a Wrapping<i128>
) -> <Wrapping<i128> as Rem<Wrapping<i128>>>::Outputimpl<'a, 'b> Rem<&'a Wrapping<i16>> for &'b Wrapping<i16>[src]
impl<'a, 'b> Rem<&'a Wrapping<i16>> for &'b Wrapping<i16>type Output = <Wrapping<i16> as Rem<Wrapping<i16>>>::Output
fn rem(
self,
other: &'a Wrapping<i16>
) -> <Wrapping<i16> as Rem<Wrapping<i16>>>::Output[src]
fn rem(
self,
other: &'a Wrapping<i16>
) -> <Wrapping<i16> as Rem<Wrapping<i16>>>::Outputimpl<'a, 'b> Rem<&'a Wrapping<i32>> for &'b Wrapping<i32>[src]
impl<'a, 'b> Rem<&'a Wrapping<i32>> for &'b Wrapping<i32>type Output = <Wrapping<i32> as Rem<Wrapping<i32>>>::Output
fn rem(
self,
other: &'a Wrapping<i32>
) -> <Wrapping<i32> as Rem<Wrapping<i32>>>::Output[src]
fn rem(
self,
other: &'a Wrapping<i32>
) -> <Wrapping<i32> as Rem<Wrapping<i32>>>::Outputimpl<'a, 'b> Rem<&'a Wrapping<i64>> for &'b Wrapping<i64>[src]
impl<'a, 'b> Rem<&'a Wrapping<i64>> for &'b Wrapping<i64>type Output = <Wrapping<i64> as Rem<Wrapping<i64>>>::Output
fn rem(
self,
other: &'a Wrapping<i64>
) -> <Wrapping<i64> as Rem<Wrapping<i64>>>::Output[src]
fn rem(
self,
other: &'a Wrapping<i64>
) -> <Wrapping<i64> as Rem<Wrapping<i64>>>::Outputimpl<'a, 'b> Rem<&'a Wrapping<i8>> for &'b Wrapping<i8>[src]
impl<'a, 'b> Rem<&'a Wrapping<i8>> for &'b Wrapping<i8>type Output = <Wrapping<i8> as Rem<Wrapping<i8>>>::Output
fn rem(
self,
other: &'a Wrapping<i8>
) -> <Wrapping<i8> as Rem<Wrapping<i8>>>::Output[src]
fn rem(
self,
other: &'a Wrapping<i8>
) -> <Wrapping<i8> as Rem<Wrapping<i8>>>::Outputimpl<'a, 'b> Rem<&'a Wrapping<isize>> for &'b Wrapping<isize>[src]
impl<'a, 'b> Rem<&'a Wrapping<isize>> for &'b Wrapping<isize>type Output = <Wrapping<isize> as Rem<Wrapping<isize>>>::Output
fn rem(
self,
other: &'a Wrapping<isize>
) -> <Wrapping<isize> as Rem<Wrapping<isize>>>::Output[src]
fn rem(
self,
other: &'a Wrapping<isize>
) -> <Wrapping<isize> as Rem<Wrapping<isize>>>::Outputimpl<'a, 'b> Rem<&'a Wrapping<u128>> for &'b Wrapping<u128>[src]
impl<'a, 'b> Rem<&'a Wrapping<u128>> for &'b Wrapping<u128>type Output = <Wrapping<u128> as Rem<Wrapping<u128>>>::Output
fn rem(
self,
other: &'a Wrapping<u128>
) -> <Wrapping<u128> as Rem<Wrapping<u128>>>::Output[src]
fn rem(
self,
other: &'a Wrapping<u128>
) -> <Wrapping<u128> as Rem<Wrapping<u128>>>::Outputimpl<'a, 'b> Rem<&'a Wrapping<u16>> for &'b Wrapping<u16>[src]
impl<'a, 'b> Rem<&'a Wrapping<u16>> for &'b Wrapping<u16>type Output = <Wrapping<u16> as Rem<Wrapping<u16>>>::Output
fn rem(
self,
other: &'a Wrapping<u16>
) -> <Wrapping<u16> as Rem<Wrapping<u16>>>::Output[src]
fn rem(
self,
other: &'a Wrapping<u16>
) -> <Wrapping<u16> as Rem<Wrapping<u16>>>::Outputimpl<'a, 'b> Rem<&'a Wrapping<u32>> for &'b Wrapping<u32>[src]
impl<'a, 'b> Rem<&'a Wrapping<u32>> for &'b Wrapping<u32>type Output = <Wrapping<u32> as Rem<Wrapping<u32>>>::Output
fn rem(
self,
other: &'a Wrapping<u32>
) -> <Wrapping<u32> as Rem<Wrapping<u32>>>::Output[src]
fn rem(
self,
other: &'a Wrapping<u32>
) -> <Wrapping<u32> as Rem<Wrapping<u32>>>::Outputimpl<'a, 'b> Rem<&'a Wrapping<u64>> for &'b Wrapping<u64>[src]
impl<'a, 'b> Rem<&'a Wrapping<u64>> for &'b Wrapping<u64>type Output = <Wrapping<u64> as Rem<Wrapping<u64>>>::Output
fn rem(
self,
other: &'a Wrapping<u64>
) -> <Wrapping<u64> as Rem<Wrapping<u64>>>::Output[src]
fn rem(
self,
other: &'a Wrapping<u64>
) -> <Wrapping<u64> as Rem<Wrapping<u64>>>::Outputimpl<'a, 'b> Rem<&'a Wrapping<u8>> for &'b Wrapping<u8>[src]
impl<'a, 'b> Rem<&'a Wrapping<u8>> for &'b Wrapping<u8>type Output = <Wrapping<u8> as Rem<Wrapping<u8>>>::Output
fn rem(
self,
other: &'a Wrapping<u8>
) -> <Wrapping<u8> as Rem<Wrapping<u8>>>::Output[src]
fn rem(
self,
other: &'a Wrapping<u8>
) -> <Wrapping<u8> as Rem<Wrapping<u8>>>::Outputimpl<'a, 'b> Rem<&'a Wrapping<usize>> for &'b Wrapping<usize>[src]
impl<'a, 'b> Rem<&'a Wrapping<usize>> for &'b Wrapping<usize>