Struct gluon_base::error::Errors [] [src]

pub struct Errors<T> { /* fields omitted */ }

An error type which can represent multiple errors.

Methods

impl<T> Errors<T>
[src]

[src]

Creates a new, empty Errors instance.

[src]

Returns true if self contains any errors

[src]

The number of errors in the error list

[src]

[src]

Adds an error to self

[src]

Pops and error off the error list

Trait Implementations

impl<T: Debug> Debug for Errors<T>
[src]

[src]

Formats the value using the given formatter.

impl<T: PartialEq> PartialEq for Errors<T>
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl<T> Extend<T> for Errors<T>
[src]

[src]

Extends a collection with the contents of an iterator. Read more

impl<T> From<Vec<T>> for Errors<T>
[src]

[src]

Performs the conversion.

impl<T> FromIterator<T> for Errors<T>
[src]

[src]

Creates a value from an iterator. Read more

impl<T> Into<Vec<T>> for Errors<T>
[src]

[src]

Performs the conversion.

impl<T> IntoIterator for Errors<T>
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

[src]

Creates an iterator from a value. Read more

impl<'a, T> IntoIterator for &'a Errors<T>
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

[src]

Creates an iterator from a value. Read more

impl<'a, T> IntoIterator for &'a mut Errors<T>
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

[src]

Creates an iterator from a value. Read more

impl<T: Display> Display for Errors<T>
[src]

[src]

Formats the value using the given formatter. Read more

impl<T: Display + Debug + Any> StdError for Errors<T>
[src]

[src]

A short description of the error. Read more

1.0.0
[src]

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