Increment

Trait Increment 

Source
pub trait Increment {
    // Required method
    fn increment(&mut self, level: IncrementLevel) -> &mut Self;
}

Required Methods§

Source

fn increment(&mut self, level: IncrementLevel) -> &mut Self

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl Increment for Version

Source§

fn increment(&mut self, level: IncrementLevel) -> &mut Self

Implementors§