pub struct WalkEntry {
pub path: String,
pub hash: Hash,
pub link_type: LinkType,
pub size: u64,
pub key: Option<[u8; 32]>,
}Expand description
Walk entry for tree traversal
Fields§
§path: String§hash: Hash§link_type: LinkTypeType of content this entry points to (Blob, File, or Dir)
size: u64§key: Option<[u8; 32]>Optional decryption key (for encrypted content)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for WalkEntry
impl RefUnwindSafe for WalkEntry
impl Send for WalkEntry
impl Sync for WalkEntry
impl Unpin for WalkEntry
impl UnwindSafe for WalkEntry
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