Trait wallswitch::Countable

source ·
pub trait Countable {
    // Required method
    fn count_chars(&self) -> usize;
}
Expand description

Trait for counting the number of chars

Required Methods§

Implementors§

source§

impl<T> Countable for T
where T: ToString,