pub trait IndexedTree: Open {
// Required method
fn index(&self) -> &GlobalIndex;
}Expand description
A repository which is indexed such that all tree blobs are contained in the index.
Required Methods§
Sourcefn index(&self) -> &GlobalIndex
fn index(&self) -> &GlobalIndex
Returns the used indexes
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".