pub(crate) enum ChainState<'a> {
Linked {
next: Option<&'a (dyn StdError + 'static)>,
},
Buffered {
rest: IntoIter<&'a (dyn StdError + 'static)>,
},
}
Variants§
Trait Implementations§
Source§impl<'a> Clone for ChainState<'a>
impl<'a> Clone for ChainState<'a>
Source§fn clone(&self) -> ChainState<'a>
fn clone(&self) -> ChainState<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl<'a> Freeze for ChainState<'a>
impl<'a> !RefUnwindSafe for ChainState<'a>
impl<'a> !Send for ChainState<'a>
impl<'a> !Sync for ChainState<'a>
impl<'a> Unpin for ChainState<'a>
impl<'a> !UnwindSafe for ChainState<'a>
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