#[repr(C)]pub struct retro_framebuffer {
pub data: *mut c_void,
pub width: c_uint,
pub height: c_uint,
pub pitch: size_t,
pub format: retro_pixel_format,
pub access_flags: c_uint,
pub memory_flags: c_uint,
}
Fields§
§data: *mut c_void
§width: c_uint
§height: c_uint
§pitch: size_t
§format: retro_pixel_format
§access_flags: c_uint
§memory_flags: c_uint
Trait Implementations§
Source§impl Clone for retro_framebuffer
impl Clone for retro_framebuffer
Source§fn clone(&self) -> retro_framebuffer
fn clone(&self) -> retro_framebuffer
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 retro_framebuffer
impl Debug for retro_framebuffer
impl Copy for retro_framebuffer
Auto Trait Implementations§
impl Freeze for retro_framebuffer
impl RefUnwindSafe for retro_framebuffer
impl !Send for retro_framebuffer
impl !Sync for retro_framebuffer
impl Unpin for retro_framebuffer
impl UnwindSafe for retro_framebuffer
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