pub enum Error<T> {
    CidEncode(Error),
    ConditionNotMet(String),
    DagCborTranslation(Error),
    FromIpld(SerdeError),
    InvalidDiscriminant(T),
    MissingField(String),
    ParseResource(ParseError),
    Unknown,
    UnexpectedIpldType(Ipld),
    Utf8(Utf8Error),
    Io(Error),
}
Expand description

Generic error type for Invocation use cases.

Variants§

§

CidEncode(Error)

Error encoding structure to a Cid.

§

ConditionNotMet(String)

Error thrown when condition or dynamic check is not met.

§

DagCborTranslation(Error)

Failure to decode/encode from/to DagCbor.

The underlying error is a anyhow::Error, per the DagCborCodec implementation.

§

FromIpld(SerdeError)

Error converting from [Ipld] structure via serde.

Transparently forwards from [libipld::error::SerdeError]’s source and Display methods through to an underlying error.

§

InvalidDiscriminant(T)

Invalid match discriminant or enumeration.

§

MissingField(String)

Error related to a missing a field in a structure or key in a map.

§

ParseResource(ParseError)

Error during parsing a Url.

Transparently forwards from url::ParseError’s source and Display methods through to an underlying error.

§

Unknown

Generic unknown error.

§

UnexpectedIpldType(Ipld)

Unexpcted [Ipld] type.

§

Utf8(Utf8Error)

Error when attempting to interpret a sequence of u8 as a string.

Transparently forwards from std::str::Utf8Error’s source and Display methods through to an underlying error.

§

Io(Error)

Propagated IO error.

Implementations§

source§

impl<T> Error<T>

source

pub fn unexpected_ipld(ipld: Ipld) -> Self

Return a SerdeError when returning an [Ipld] structure that’s not expected at the call-site.

source

pub fn not_an_ipld_list() -> Self

Return an invalid type SerdeError when not matching an expected [Ipld] list/sequence type.

Trait Implementations§

source§

impl<T: Debug> Debug for Error<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T> Display for Error<T>
where T: Debug,

source§

fn fmt(&self, __formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T> Error for Error<T>
where Self: Debug + Display,

source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<Error<String>> for Error<Unit>

source§

fn from(_err: Error<String>) -> Error<Unit>

Converts to this type from the input type.
source§

impl From<Error<String>> for InputParseError<Unit>

source§

fn from(err: Error<String>) -> Self

Converts to this type from the input type.
source§

impl<T> From<Error<T>> for InputParseError<T>

source§

fn from(source: Error<T>) -> Self

Converts to this type from the input type.
source§

impl From<Error<Unit>> for Error<String>

source§

fn from(_err: Error<Unit>) -> Self

Converts to this type from the input type.
source§

impl<T> From<Error> for Error<T>

source§

fn from(source: Error) -> Self

Converts to this type from the input type.
source§

impl<T> From<Error> for Error<T>

source§

fn from(source: Error) -> Self

Converts to this type from the input type.
source§

impl<T> From<Error> for Error<T>

source§

fn from(source: Error) -> Self

Converts to this type from the input type.
source§

impl<T> From<Infallible> for Error<T>

source§

fn from(err: Infallible) -> Self

Converts to this type from the input type.
source§

impl<T> From<ParseError> for Error<T>

source§

fn from(source: ParseError) -> Self

Converts to this type from the input type.
source§

impl<T> From<SerdeError> for Error<T>

source§

fn from(source: SerdeError) -> Self

Converts to this type from the input type.
source§

impl<T> From<Utf8Error> for Error<T>

source§

fn from(source: Utf8Error) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<T> !RefUnwindSafe for Error<T>

§

impl<T> Send for Error<T>
where T: Send,

§

impl<T> Sync for Error<T>
where T: Sync,

§

impl<T> Unpin for Error<T>
where T: Unpin,

§

impl<T> !UnwindSafe for Error<T>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> IntoSql for T

source§

fn into_sql<T>(self) -> Self::Expression

Convert self to an expression for Diesel’s query builder. Read more
source§

fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression

Convert &self to an expression for Diesel’s query builder. Read more
§

impl<T> References<RawCodec> for T

§

fn references<R, E>(_c: RawCodec, _r: &mut R, _set: &mut E) -> Result<(), Error>
where R: Read, E: Extend<Cid<64>>,

Scrape the references from an impl Read. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<U> UcanStoreConditionalSend for U
where U: Send,

source§

impl<U> UcanStoreConditionalSendSync for U
where U: Send + Sync,