#[repr(transparent)]pub struct SDL_AsyncIOResult(pub c_uint);Expand description
Possible outcomes of an asynchronous I/O task.
Available Since: This enum is available since SDL 3.2.0.
Tuple Fields§
§0: c_uintImplementations§
Source§impl SDL_AsyncIOResult
impl SDL_AsyncIOResult
Sourcepub const SDL_ASYNCIO_COMPLETE: SDL_AsyncIOResult
pub const SDL_ASYNCIO_COMPLETE: SDL_AsyncIOResult
< request was completed without error
Sourcepub const SDL_ASYNCIO_FAILURE: SDL_AsyncIOResult
pub const SDL_ASYNCIO_FAILURE: SDL_AsyncIOResult
< request failed for some reason; check SDL_GetError()!
Sourcepub const SDL_ASYNCIO_CANCELED: SDL_AsyncIOResult
pub const SDL_ASYNCIO_CANCELED: SDL_AsyncIOResult
< request was canceled before completing.
Trait Implementations§
Source§impl Clone for SDL_AsyncIOResult
impl Clone for SDL_AsyncIOResult
Source§fn clone(&self) -> SDL_AsyncIOResult
fn clone(&self) -> SDL_AsyncIOResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SDL_AsyncIOResult
impl Debug for SDL_AsyncIOResult
Source§impl Hash for SDL_AsyncIOResult
impl Hash for SDL_AsyncIOResult
Source§impl PartialEq for SDL_AsyncIOResult
impl PartialEq for SDL_AsyncIOResult
impl Copy for SDL_AsyncIOResult
impl Eq for SDL_AsyncIOResult
impl StructuralPartialEq for SDL_AsyncIOResult
Auto Trait Implementations§
impl Freeze for SDL_AsyncIOResult
impl RefUnwindSafe for SDL_AsyncIOResult
impl Send for SDL_AsyncIOResult
impl Sync for SDL_AsyncIOResult
impl Unpin for SDL_AsyncIOResult
impl UnsafeUnpin for SDL_AsyncIOResult
impl UnwindSafe for SDL_AsyncIOResult
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