pub trait LocationIterExtensions: Iterator<Item = RepositoryLocation> + Sized {
// Required method
fn with_change_status<'a, T: SupportsGit + SupportsAlias>(
&'a mut self,
api: &'a Api<T>,
) -> WithChangeStatusIterator<'a, Self, T> ⓘ;
}Required Methods§
fn with_change_status<'a, T: SupportsGit + SupportsAlias>( &'a mut self, api: &'a Api<T>, ) -> WithChangeStatusIterator<'a, Self, T> ⓘ
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.