Struct Source
struct Source<'a> { ... }
An iterator over an Error and its sources.
If you want to omit the initial error and only process
its sources, use skip(1).
Implementations
impl<'a> Clone for Source<'a>
fn clone(self: &Self) -> Source<'a>
impl<'a> Debug for Source<'a>
fn fmt(self: &Self, f: &mut $crate::fmt::Formatter<'_>) -> $crate::fmt::Result
impl<'a> Freeze for Source<'a>
impl<'a> FusedIterator for Source<'a>
impl<'a> Iterator for Source<'a>
fn next(self: &mut Self) -> Option<<Self as >::Item>fn size_hint(self: &Self) -> (usize, Option<usize>)
impl<'a> RefUnwindSafe for Source<'a>
impl<'a> Send for Source<'a>
impl<'a> Sync for Source<'a>
impl<'a> Unpin for Source<'a>
impl<'a> UnwindSafe for Source<'a>
impl<I> IntoIterator for Source<'a>
fn into_iter(self: Self) -> I
impl<T> Any for Source<'a>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for Source<'a>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for Source<'a>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> CloneToUninit for Source<'a>
unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)
impl<T> From for Source<'a>
fn from(t: T) -> TReturns the argument unchanged.
impl<T, U> Into for Source<'a>
fn into(self: Self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom for Source<'a>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for Source<'a>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>