Mercurial > public > mercurial-scm > hg-stable
diff rust/hg-core/src/lib.rs @ 42892:7083ac37314f
rust-dirstate: provide CopyMapIter and StateMapIter types
They will be used in the declaration of Python iterator types.
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Sun, 08 Sep 2019 12:00:26 +0900 |
parents | a03a29462c0a |
children | 7a01778bc7b7 |
line wrap: on
line diff
--- a/rust/hg-core/src/lib.rs Sun Sep 08 11:55:29 2019 +0900 +++ b/rust/hg-core/src/lib.rs Sun Sep 08 12:00:26 2019 +0900 @@ -12,7 +12,8 @@ dirs_multiset::{DirsMultiset, DirsMultisetIter}, dirstate_map::DirstateMap, parsers::{pack_dirstate, parse_dirstate, PARENT_SIZE}, - CopyMap, DirstateEntry, DirstateParents, EntryState, StateMap, + CopyMap, CopyMapIter, DirstateEntry, DirstateParents, EntryState, + StateMap, StateMapIter, }; mod filepatterns; pub mod utils;