[][src]Enum sdl2_sys::SDL_AssertState

#[repr(u32)]pub enum SDL_AssertState {
    SDL_ASSERTION_RETRY,
    SDL_ASSERTION_BREAK,
    SDL_ASSERTION_ABORT,
    SDL_ASSERTION_IGNORE,
    SDL_ASSERTION_ALWAYS_IGNORE,
}

Variants

SDL_ASSERTION_RETRY

< Retry the assert immediately.

SDL_ASSERTION_BREAK

< Make the debugger trigger a breakpoint.

SDL_ASSERTION_ABORT

< Terminate the program.

SDL_ASSERTION_IGNORE

< Ignore the assert.

SDL_ASSERTION_ALWAYS_IGNORE

< Ignore the assert from now on.

Trait Implementations

impl Clone for SDL_AssertState[src]

impl Copy for SDL_AssertState[src]

impl Debug for SDL_AssertState[src]

impl Eq for SDL_AssertState[src]

impl Hash for SDL_AssertState[src]

impl PartialEq<SDL_AssertState> for SDL_AssertState[src]

impl StructuralEq for SDL_AssertState[src]

impl StructuralPartialEq for SDL_AssertState[src]

Auto Trait Implementations

impl Send for SDL_AssertState

impl Sync for SDL_AssertState

impl Unpin for SDL_AssertState

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.