pub enum Error {
UnsupportedType(UnexpectedNodeType),
UnexpectedType(UnexpectedNodeType),
DagPbParsingFailed(Error),
UnixFsParsingFailed(Error),
EmptyDagPbNode,
InvalidCid(InvalidCidInLink),
File(FileError),
UnsupportedDirectory(UnexpectedDirectoryProperties),
UnsupportedHAMTShard(ShardError),
}
Expand description
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§
Source§impl Error for Error
impl Error for Error
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<FileReadFailed> for Error
impl From<FileReadFailed> for Error
Source§fn from(e: FileReadFailed) -> Self
fn from(e: FileReadFailed) -> Self
Converts to this type from the input type.
Source§impl From<InvalidCidInLink> for Error
impl From<InvalidCidInLink> for Error
Source§fn from(e: InvalidCidInLink) -> Self
fn from(e: InvalidCidInLink) -> Self
Converts to this type from the input type.
Source§impl From<ShardError> for Error
impl From<ShardError> for Error
Source§fn from(e: ShardError) -> Self
fn from(e: ShardError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for Error
impl !RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl !UnwindSafe for Error
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more