pub trait CopyFrom {
    type From;

    // Required method
    fn from(&mut self, source: Self::From);
}

Required Associated Types§

Required Methods§

source

fn from(&mut self, source: Self::From)

Implementations on Foreign Types§

source§

impl CopyFrom for u32

§

type From = u32

source§

fn from(&mut self, source: Self::From)

source§

impl CopyFrom for u128

§

type From = u128

source§

fn from(&mut self, source: Self::From)

source§

impl CopyFrom for usize

§

type From = usize

source§

fn from(&mut self, source: Self::From)

Implementors§