pub struct Entry {
pub permissions: Permissions,
pub hash: Hash,
pub name: Name,
/* private fields */
}Expand description
A Tree entry (e.g. { Permissions, Hash, Name, .. })
Fields§
§permissions: PermissionsPermissions for a given file or directory (typically “100644” for files or “040000” for trees)
hash: Hash§name: NameTrait Implementations§
Auto Trait Implementations§
impl Freeze for Entry
impl RefUnwindSafe for Entry
impl Send for Entry
impl Sync for Entry
impl Unpin for Entry
impl UnsafeUnpin for Entry
impl UnwindSafe for Entry
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