#[repr(C)]pub struct retro_game_info_ext {
pub full_path: *const c_char,
pub archive_path: *const c_char,
pub archive_file: *const c_char,
pub dir: *const c_char,
pub name: *const c_char,
pub ext: *const c_char,
pub meta: *const c_char,
pub data: *const c_void,
pub size: size_t,
pub file_in_archive: bool,
pub persistent_data: bool,
}
Fields§
§full_path: *const c_char
§archive_path: *const c_char
§archive_file: *const c_char
§dir: *const c_char
§name: *const c_char
§ext: *const c_char
§meta: *const c_char
§data: *const c_void
§size: size_t
§file_in_archive: bool
§persistent_data: bool
Trait Implementations§
Source§impl Clone for retro_game_info_ext
impl Clone for retro_game_info_ext
Source§fn clone(&self) -> retro_game_info_ext
fn clone(&self) -> retro_game_info_ext
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_game_info_ext
impl Debug for retro_game_info_ext
impl Copy for retro_game_info_ext
Auto Trait Implementations§
impl Freeze for retro_game_info_ext
impl RefUnwindSafe for retro_game_info_ext
impl !Send for retro_game_info_ext
impl !Sync for retro_game_info_ext
impl Unpin for retro_game_info_ext
impl UnwindSafe for retro_game_info_ext
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