pub struct FileVisit { /* private fields */ }
Expand description

FileVisit represents an ongoing visitation over an UnixFs File tree.

The file visitor does not implement size validation of merkledag links at the moment. This could be implmented with generational storage and it would require an u64 per link.

Note: For easier to use interface, you should consider using ipfs_unixfs::walk::Walker. It uses IdleFileVisit and FileVisit internally but has a better API.

Implementations§

Access hashes of all pending links for prefetching purposes. The block for the first item returned by this method is the one which needs to be processed next with continue_walk.

Returns tuple of the next Cid which needs to be processed and an iterator over the remaining.

Continues the walk with the data for the first pending_link key.

Returns on success a tuple of bytes and new version of FileVisit to continue the visit, when there is something more to visit.

Returns the total size of the file in bytes.

Trait Implementations§

Converts this type into a shared reference of the (usually inferred) input type.
Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Scrape the references from an impl Read. Read more
Should always be Self
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.