[][src]Enum ipfs_unixfs::walk::Error

pub enum Error {
    UnsupportedType(UnexpectedNodeType),
    UnexpectedType(UnexpectedNodeType),
    DagPbParsingFailed(Error),
    UnixFsParsingFailed(Error),
    EmptyDagPbNode,
    InvalidCid(InvalidCidInLink),
    File(FileError),
    UnsupportedDirectory(UnexpectedDirectoryProperties),
    UnsupportedHAMTShard(ShardError),
}

Errors which can occur while walking a tree.

Variants

UnsupportedType(UnexpectedNodeType)

An unsupported type of UnixFS node was encountered. There should be a way to skip these. Of the defined types only Metadata is unsupported, all undefined types as of 2020-06 are also unsupported.

UnexpectedType(UnexpectedNodeType)

This error is returned when a file e.g. links to a non-Raw or non-File subtree.

DagPbParsingFailed(Error)

dag-pb node parsing failed, perhaps the block is not a dag-pb node?

UnixFsParsingFailed(Error)

Failed to parse the unixfs node inside the dag-pb node.

EmptyDagPbNode

dag-pb node contained no data.

InvalidCid(InvalidCidInLink)

dag-pb link could not be converted to a Cid

File(FileError)

A File has an invalid structure

UnsupportedDirectory(UnexpectedDirectoryProperties)

A Directory has an unsupported structure

UnsupportedHAMTShard(ShardError)

HAMTSharded directory has unsupported properties

Trait Implementations

impl Debug for Error[src]

impl Display for Error[src]

impl Error for Error[src]

impl From<FileReadFailed> for Error[src]

impl From<InvalidCidInLink> for Error[src]

impl From<ShardError> for Error[src]

Auto Trait Implementations

impl !RefUnwindSafe for Error

impl Send for Error

impl Sync for Error

impl Unpin for Error

impl !UnwindSafe for Error

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.