Struct fermium::SDL_InitFlags[][src]

#[repr(transparent)]pub struct SDL_InitFlags(pub u32);

SDL2’s initialization flags.

These are the flags which may be passed to SDL_Init. You should specify the subsystems which you will be using in your application.

Trait Implementations

impl BitAnd<SDL_InitFlags> for SDL_InitFlags[src]

type Output = Self

The resulting type after applying the & operator.

impl BitAndAssign<SDL_InitFlags> for SDL_InitFlags[src]

impl BitOr<SDL_InitFlags> for SDL_InitFlags[src]

type Output = Self

The resulting type after applying the | operator.

impl BitOrAssign<SDL_InitFlags> for SDL_InitFlags[src]

impl BitXor<SDL_InitFlags> for SDL_InitFlags[src]

type Output = Self

The resulting type after applying the ^ operator.

impl BitXorAssign<SDL_InitFlags> for SDL_InitFlags[src]

impl Clone for SDL_InitFlags[src]

impl Copy for SDL_InitFlags[src]

impl Debug for SDL_InitFlags[src]

impl Default for SDL_InitFlags[src]

impl Eq for SDL_InitFlags[src]

impl Hash for SDL_InitFlags[src]

impl Not for SDL_InitFlags[src]

type Output = Self

The resulting type after applying the ! operator.

impl Ord for SDL_InitFlags[src]

impl PartialEq<SDL_InitFlags> for SDL_InitFlags[src]

impl PartialOrd<SDL_InitFlags> for SDL_InitFlags[src]

impl StructuralEq for SDL_InitFlags[src]

impl StructuralPartialEq for SDL_InitFlags[src]

Auto Trait Implementations

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.