wiwi::num

Trait Div

Source
pub trait Div<R>
where Self: Sealed, R: Sealed,
{ type Output; // Required method fn div(self, rhs: R) -> Self::Output; }

Required Associated Types§

Required Methods§

Source

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

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl Div<u8> for u8

Source§

type Output = u8

Source§

fn div(self, rhs: u8) -> u8

Source§

impl Div<u16> for u8

Source§

type Output = u16

Source§

fn div(self, rhs: u16) -> u16

Source§

impl Div<u32> for u8

Source§

type Output = u32

Source§

fn div(self, rhs: u32) -> u32

Source§

impl Div<u64> for u8

Source§

type Output = u64

Source§

fn div(self, rhs: u64) -> u64

Source§

impl Div<u128> for u8

Source§

type Output = u128

Source§

fn div(self, rhs: u128) -> u128

Source§

impl Div<usize> for u8

Source§

type Output = usize

Source§

fn div(self, rhs: usize) -> usize

Implementors§