#[repr(C)]pub struct fenster {
pub title: *const c_char,
pub width: c_int,
pub height: c_int,
pub buf: *mut u32,
pub keys: [c_int; 256],
pub mod_: c_int,
pub x: c_int,
pub y: c_int,
pub mouse: c_int,
}Fields§
§title: *const c_char§width: c_int§height: c_int§buf: *mut u32§keys: [c_int; 256]§mod_: c_int§x: c_int§y: c_int§mouse: c_intTrait Implementations§
Auto Trait Implementations§
impl Freeze for fenster
impl RefUnwindSafe for fenster
impl !Send for fenster
impl !Sync for fenster
impl Unpin for fenster
impl UnsafeUnpin for fenster
impl UnwindSafe for fenster
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