# HG changeset patch # User Yuya Nishihara # Date 1567912039 -32400 # Node ID 706104dcb2c84352b198bb94416b28f93461ceba # Parent 7083ac37314f1d68fef6039af1ec79761a9d3dc3 rust-cpython: replace dyn Iterator<..> of sequence with concrete type We wouldn't care the cost of the dynamic dispatch, but I feel a concrete type helps understanding error messages. diff -r 7083ac37314f -r 706104dcb2c8 rust/hg-cpython/src/dirstate/dirs_multiset.rs --- a/rust/hg-cpython/src/dirstate/dirs_multiset.rs Sun Sep 08 12:00:26 2019 +0900 +++ b/rust/hg-cpython/src/dirstate/dirs_multiset.rs Sun Sep 08 12:07:19 2019 +0900 @@ -18,7 +18,10 @@ use crate::dirstate::extract_dirstate; use crate::ref_sharing::{PySharedRefCell, PySharedState}; -use hg::{DirsMultiset, DirstateMapError, DirstateParseError, EntryState}; +use hg::{ + DirsMultiset, DirsMultisetIter, DirstateMapError, DirstateParseError, + EntryState, +}; py_class!(pub class Dirs |py| { data inner: PySharedRefCell; @@ -90,7 +93,7 @@ DirsMultisetKeysIterator::create_instance( py, RefCell::new(Some(leak_handle)), - RefCell::new(Box::new(leaked_ref.iter())), + RefCell::new(leaked_ref.iter()), ) } @@ -118,10 +121,10 @@ } } -py_shared_sequence_iterator!( +py_shared_iterator_impl!( DirsMultisetKeysIterator, DirsMultisetLeakedRef, - Vec, + DirsMultisetIter<'static>, Dirs::translate_key, Option ); diff -r 7083ac37314f -r 706104dcb2c8 rust/hg-cpython/src/ref_sharing.rs --- a/rust/hg-cpython/src/ref_sharing.rs Sun Sep 08 12:00:26 2019 +0900 +++ b/rust/hg-cpython/src/ref_sharing.rs Sun Sep 08 12:07:19 2019 +0900 @@ -417,23 +417,3 @@ ); }; } - -/// Works basically the same as `py_shared_mapping_iterator`, but with only a -/// key. -macro_rules! py_shared_sequence_iterator { - ( - $name:ident, - $leaked:ident, - $key_type: ty, - $success_func: path, - $success_type: ty - ) => { - py_shared_iterator_impl!( - $name, - $leaked, - Box + Send>, - $success_func, - $success_type - ); - }; -}