Struct coded::Error[][src]

pub struct Error(_);
Expand description

A general-purpose error with a “kind” from Google’s canonical error space.

This currently tracks:

  • The error “kind”, taken from Google’s canonical error space.
  • A human-readable message.
  • An optional source/cause, exposed through std::error::Error::cause.
  • An optional backtrace. This is present if coded was compiled with the backtrace or unstable_std_backtrace feature flags and the program was run with RUST_BACKTRACE or RUST_LIB_BACKTRACE set as described at std::backtrace.

The Display impl will display a short summary of this error itself. It won’t display the chain of sources or the backtrace.

To display this error along with its causes and stack trace, use the chain method.

Implementations

Returns a new error with the given kind and message.

Returns a new error wrapping a source with no additional message.

Returns the error kind.

Returns a borrowed value which can display not only this error but also the full chain of causes and (where applicable) the stack trace.

The exact format may change. Currently, it displays the stack trace for the current error but not any of the sources.

Trait Implementations

Formats the value using the given formatter. Read more

Formats this error alone (not its full chain).

Formats the value using the given formatter. Read more

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

🔬 This is a nightly-only experimental API. (backtrace)

Returns a stack backtrace, if available, of where this error occurred. Read more

👎 Deprecated since 1.42.0:

use the Display impl or to_string()

👎 Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

Performs the conversion.

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

Performs the conversion.

Performs the conversion.

Converts the given value to a String. Read more

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.