Enum crossbeam_epoch::sync::list::IterError
source · pub(crate) enum IterError {
Stalled,
}
Expand description
An error that occurs during iteration over the list.
Variants§
Stalled
A concurrent thread modified the state of the list at the same place that this iterator was inspecting. Subsequent iteration will restart from the beginning of the list.
Trait Implementations§
source§impl PartialEq for IterError
impl PartialEq for IterError
impl StructuralPartialEq for IterError
Auto Trait Implementations§
impl Freeze for IterError
impl RefUnwindSafe for IterError
impl Send for IterError
impl Sync for IterError
impl Unpin for IterError
impl UnwindSafe for IterError
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