pub trait Incrementable {
    // Required method
    fn inc(&mut self);
}

Required Methods§

source

fn inc(&mut self)

Implementors§