pub struct FaaArrayQueue<T: Send> { /* private fields */ }Expand description
a lock free mpmc queue
§Examples
use faa_array_queue::FaaArrayQueue;
let queue = FaaArrayQueue::<usize>::default();Implementations§
Trait Implementations§
Source§impl<T: Send> Default for FaaArrayQueue<T>
impl<T: Send> Default for FaaArrayQueue<T>
Auto Trait Implementations§
impl<T> !Freeze for FaaArrayQueue<T>
impl<T> RefUnwindSafe for FaaArrayQueue<T>
impl<T> Send for FaaArrayQueue<T>
impl<T> Sync for FaaArrayQueue<T>
impl<T> Unpin for FaaArrayQueue<T>
impl<T> UnwindSafe for FaaArrayQueue<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