pub trait RevsetStreamExt {
// Required method
fn commits(
self,
store: &Arc<Store>,
) -> impl Stream<Item = Result<Commit, RevsetEvaluationError>> + use<'_, Self>;
}Required Methods§
fn commits( self, store: &Arc<Store>, ) -> impl Stream<Item = Result<Commit, RevsetEvaluationError>> + use<'_, 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.