Struct darling::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]

[src]

Creates a new error with a custom message.

[src]

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

[src]

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

[src]

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

[src]

Creates a new error for a struct or variant that does not adhere to the supported shape.

[src]

[src]

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

[src]

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

[src]

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

[src]

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.

[src]

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

Panics

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

[src]

Recursively converts a tree of errors to a flattened list.

[src]

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

[src]

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 Error for Error
[src]

[src]

A short description of the error. Read more

[src]

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

impl IntoIterator for Error
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Important traits for IntoIter
[src]

Creates an iterator from a value. Read more

impl Display for Error
[src]

[src]

Formats the value using the given formatter. Read more

impl Debug for Error
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Error

impl Sync for Error