#[repr(C)]pub struct SDL_MessageBoxData {
pub flags: Uint32,
pub window: *mut SDL_Window,
pub title: *const c_char,
pub message: *const c_char,
pub numbuttons: c_int,
pub buttons: *const SDL_MessageBoxButtonData,
pub colorScheme: *const SDL_MessageBoxColorScheme,
}Fields§
§flags: Uint32§window: *mut SDL_Window§title: *const c_char§message: *const c_char§colorScheme: *const SDL_MessageBoxColorSchemeTrait Implementations§
Source§impl Clone for SDL_MessageBoxData
impl Clone for SDL_MessageBoxData
Source§fn clone(&self) -> SDL_MessageBoxData
fn clone(&self) -> SDL_MessageBoxData
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_MessageBoxData
impl Debug for SDL_MessageBoxData
impl Copy for SDL_MessageBoxData
Auto Trait Implementations§
impl Freeze for SDL_MessageBoxData
impl RefUnwindSafe for SDL_MessageBoxData
impl !Send for SDL_MessageBoxData
impl !Sync for SDL_MessageBoxData
impl Unpin for SDL_MessageBoxData
impl UnwindSafe for SDL_MessageBoxData
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