pub trait MutableInventoryTree: PyMutableTree {
// Provided method
fn add(&self, paths: &[&Path], file_ids: &[FileId]) -> Result<(), Error> { ... }
}Expand description
Trait for trees that have an inventory and can be modified.
Inventory trees are trees that track file identifiers, which is a feature specific to Bazaar trees.