pub struct Tree {
pub hash: Hash,
pub entries: BTreeMap<Name, Entry>,
/* private fields */
}
Expand description
A parsed git tree (~directory)
§Example
// The initial commit of this project's git repository
let repository = Repository::from_regular_repository(".").unwrap();
let hcommit = commit::Hash::from_str("02c4f0499bcf979ad86d9ef5b61ffc51b1394bef").unwrap();
let htree = tree ::Hash::from_str("88824f5315abd219d2f6f5f68fe69f32386ffc00").unwrap();
let hgitignore = blob ::Hash::from_str("96ef6c0b944e24fc22f51f18136cd62ffd5b0b8f").unwrap();
let tree = Tree::read(&repository, &htree).unwrap();
assert_eq!(tree.hash, htree);
let gitignore = tree.entries.get(".gitignore").unwrap();
assert_eq!(gitignore.permissions, "100644".parse().unwrap());
assert_eq!(gitignore.hash, hgitignore);
assert_eq!(gitignore.name, ".gitignore");
Fields§
§hash: Hash
§entries: BTreeMap<Name, Entry>
A dictionary of references to Trees or Blobs and their associated Names and Permissions
Implementations§
Auto Trait Implementations§
impl Freeze for Tree
impl RefUnwindSafe for Tree
impl Send for Tree
impl Sync for Tree
impl Unpin for Tree
impl UnwindSafe for Tree
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more