Total

Trait Total 

Source
pub trait Total {
    // Required method
    fn total(&self) -> u64;
}

Required Methods§

Source

fn total(&self) -> u64

Implementations on Foreign Types§

Source§

impl Total for Range<u64>

Source§

fn total(&self) -> u64

Source§

impl<T> Total for &T
where T: Total,

Source§

fn total(&self) -> u64

Source§

impl<T> Total for [T]
where T: Total,

Source§

fn total(&self) -> u64

Source§

impl<T> Total for Vec<T>
where T: Total,

Source§

fn total(&self) -> u64

Implementors§