Skip to main content

Total

Trait Total 

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

Required Methods§

Source

fn total(&self) -> u64

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl Total for Vec<Range<u64>>

Source§

fn total(&self) -> u64

Source§

impl Total for Range<u64>

Source§

fn total(&self) -> u64

Implementors§