pub struct IOQueue { /* private fields */ }Expand description
An opaque I/O queue handle.
A FIFO of binary data used to stage output without copying. Created with
ioq_create and destroyed with ioq_destroy; always handled as
*mut IOQueue.
ErlNifIOQueue — NIF 2.12 — OTP 20.1
Auto Trait Implementations§
impl !Send for IOQueue
impl !Sync for IOQueue
impl !Unpin for IOQueue
impl Freeze for IOQueue
impl RefUnwindSafe for IOQueue
impl UnsafeUnpin for IOQueue
impl UnwindSafe for IOQueue
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