NextVersion

Trait NextVersion 

Source
pub trait NextVersion {
    // Required method
    fn next<I>(&self, commits: I) -> Self
       where I: IntoIterator,
             I::Item: AsRef<str>;
}

Required Methods§

Source

fn next<I>(&self, commits: I) -> Self
where I: IntoIterator, I::Item: AsRef<str>,

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 NextVersion for Version

Source§

fn next<I>(&self, commits: I) -> Self
where I: IntoIterator, I::Item: AsRef<str>,

Implementors§