#[repr(C)]pub struct retro_subsystem_rom_info {
pub desc: *const c_char,
pub valid_extensions: *const c_char,
pub need_fullpath: bool,
pub block_extract: bool,
pub required: bool,
pub memory: *const retro_subsystem_memory_info,
pub num_memory: c_uint,
}Fields
desc: *const c_charDescribes what the content is (SGB BIOS, GB ROM, etc).
valid_extensions: *const c_charSame definition as retro_get_system_info().
need_fullpath: boolSame definition as retro_get_system_info().
block_extract: boolSame definition as retro_get_system_info().
required: boolThis is set if the content is required to load a game. If this is set to false, a zeroed-out retro_game_info can be passed.
memory: *const retro_subsystem_memory_infoContent can have multiple associated persistent memory types (retro_get_memory()).
num_memory: c_uintTrait Implementations
Auto Trait Implementations
impl RefUnwindSafe for retro_subsystem_rom_info
impl !Send for retro_subsystem_rom_info
impl !Sync for retro_subsystem_rom_info
impl Unpin for retro_subsystem_rom_info
impl UnwindSafe for retro_subsystem_rom_info
Blanket Implementations
Mutably borrows from an owned value. Read more
