Skip to main content

CrtMod

Trait CrtMod 

Source
pub trait CrtMod {
    type I;

    // Required method
    fn crt_mod(&self, m: Self::I) -> Self::I;
}

Required Associated Types§

Source

type I

Required Methods§

Source

fn crt_mod(&self, m: Self::I) -> Self::I

Implementations on Foreign Types§

Source§

impl CrtMod for [(u8, u8)]

Source§

type I = u8

Source§

fn crt_mod(&self, mu: u8) -> u8

Source§

impl CrtMod for [(u16, u16)]

Source§

type I = u16

Source§

fn crt_mod(&self, mu: u16) -> u16

Source§

impl CrtMod for [(u32, u32)]

Source§

type I = u32

Source§

fn crt_mod(&self, mu: u32) -> u32

Source§

impl CrtMod for [(u64, u64)]

Source§

type I = u64

Source§

fn crt_mod(&self, mu: u64) -> u64

Source§

impl CrtMod for [(u128, u128)]

Source§

type I = u128

Source§

fn crt_mod(&self, mu: u128) -> u128

Source§

impl CrtMod for [(usize, usize)]

Source§

type I = usize

Source§

fn crt_mod(&self, mu: usize) -> usize

Implementors§