Struct gluon_base::error::Errors
source · pub struct Errors<T> { /* private fields */ }
Expand description
An error type which can represent multiple errors.
Implementations§
Trait Implementations§
source§impl<T: Display + Debug + Any> Error for Errors<T>
impl<T: Display + Debug + Any> Error for Errors<T>
source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
source§impl<T> Extend<T> for Errors<T>
impl<T> Extend<T> for Errors<T>
source§fn extend<Iter: IntoIterator<Item = T>>(&mut self, iter: Iter)
fn extend<Iter: IntoIterator<Item = T>>(&mut self, iter: Iter)
Extends a collection with the contents of an iterator. Read more
source§fn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
🔬This is a nightly-only experimental API. (
extend_one
)Extends a collection with exactly one element.
source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
🔬This is a nightly-only experimental API. (
extend_one
)Reserves capacity in a collection for the given number of additional elements. Read more
source§impl<T> FromIterator<T> for Errors<T>
impl<T> FromIterator<T> for Errors<T>
source§impl<'a, T> IntoIterator for &'a Errors<T>
impl<'a, T> IntoIterator for &'a Errors<T>
source§impl<'a, T> IntoIterator for &'a mut Errors<T>
impl<'a, T> IntoIterator for &'a mut Errors<T>
source§impl<T> IntoIterator for Errors<T>
impl<T> IntoIterator for Errors<T>
source§impl<T: PartialEq> PartialEq for Errors<T>
impl<T: PartialEq> PartialEq for Errors<T>
impl<T: Eq> Eq for Errors<T>
impl<T> StructuralEq for Errors<T>
impl<T> StructuralPartialEq for Errors<T>
Auto Trait Implementations§
impl<T> RefUnwindSafe for Errors<T>where
T: RefUnwindSafe,
impl<T> Send for Errors<T>where
T: Send,
impl<T> Sync for Errors<T>where
T: Sync,
impl<T> Unpin for Errors<T>where
T: Unpin,
impl<T> UnwindSafe for Errors<T>where
T: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more