pub struct Reader<T> { /* private fields */ }
Expand description
Read half of a concurrent_list
; it can be cloned and it can be iterated
over, to go through the elements of the list.
Implementations§
Trait Implementations§
Source§impl<'a, T> IntoIterator for &'a Reader<T>
impl<'a, T> IntoIterator for &'a Reader<T>
impl<T: Send + Sync> Send for Reader<T>
impl<T: Send + Sync> Sync for Reader<T>
Auto Trait Implementations§
impl<T> Freeze for Reader<T>
impl<T> !RefUnwindSafe for Reader<T>
impl<T> Unpin for Reader<T>
impl<T> !UnwindSafe for Reader<T>
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