pub struct SDL_AsyncIOQueue { /* private fields */ }Expand description
A queue of completed asynchronous I/O tasks.
When starting an asynchronous operation, you specify a queue for the new task. A queue can be asked later if any tasks in it have completed, allowing an app to manage multiple pending tasks in one place, in whatever order they complete.
§Availability
This struct is available since SDL 3.2.0.
§See also
Auto Trait Implementations§
impl Freeze for SDL_AsyncIOQueue
impl RefUnwindSafe for SDL_AsyncIOQueue
impl Send for SDL_AsyncIOQueue
impl Sync for SDL_AsyncIOQueue
impl Unpin for SDL_AsyncIOQueue
impl UnwindSafe for SDL_AsyncIOQueue
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