Struct darling_core::error::Error [] [src]

pub struct Error { /* fields omitted */ }

An error encountered during attribute parsing.

Given that most errors darling encounters represent code bugs in dependent crates, the internal structure of the error is deliberately opaque.

Methods

impl Error
[src]

Creates a new error with a custom message.

Creates a new error for a field that appears twice in the input.

Creates a new error for a non-optional field that does not appear in the input.

Creates a new error for a field name that appears in the input but does not correspond to a known field.

Creates a new error for a field which has an unexpected literal type.

Creates a new error for a value which doesn't match a set of expected literals.

Creates a new error for a list which did not get enough items to proceed.

Creates a new error when a list got more items than it supports. The max argument is the largest number of items the receiver could accept.

Bundle a set of multiple errors into a single Error instance.

Panics

This function will panic if errors.is_empty() == true.

Recursively converts a tree of errors to a flattened list.

Adds a location to the error, such as a field or variant. Locations must be added in reverse order of specificity.

Gets the number of individual errors in this error.

This function should never return 0, as it shouldn't be possible to construct a multi-error from an empty Vec.

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl StdError for Error
[src]

A short description of the error. Read more

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

impl Display for Error
[src]

Formats the value using the given formatter. Read more

impl IntoIterator for Error
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more