Enum unixfs_v1::dir::MaybeResolved [−][src]
pub enum MaybeResolved<'needle> {
Found(Cid),
NeedToLoadMore(ShardedLookup<'needle>),
NotFound,
}
Expand description
Resolving result type for the successful cases.
Variants
Link was found for the given segment.
The block presented to resolve
was a HAMT sharded directory and other blocks need to be
read in order to find the link. ShardedLookup
will handle the lookup and navigation
over the shards.
Tuple Fields of NeedToLoadMore
0: ShardedLookup<'needle>
The segment could not be found.