pub trait CloneIntoLatest {
    type Latest;

    // Required method
    fn clone_into_latest(&self) -> Self::Latest;
}

Required Associated Types§

Required Methods§

source

fn clone_into_latest(&self) -> Self::Latest

Implementors§

source§

impl<T, Latest> CloneIntoLatest for T
where T: HasLatestVersion<Latest = Latest> + Clone,

§

type Latest = Latest