#[repr(C)]pub struct retro_vfs_interface_info {
pub required_interface_version: u32,
pub iface: *mut retro_vfs_interface,
}
Fields§
§required_interface_version: u32
Set by core: should this be higher than the version the front end supports, front end will return false in the RETRO_ENVIRONMENT_GET_VFS_INTERFACE call Introduced in VFS API v1
iface: *mut retro_vfs_interface
Frontend writes interface pointer here. The frontend also sets the actual version, must be at least required_interface_version. Introduced in VFS API v1
Trait Implementations§
source§impl Clone for retro_vfs_interface_info
impl Clone for retro_vfs_interface_info
source§fn clone(&self) -> retro_vfs_interface_info
fn clone(&self) -> retro_vfs_interface_info
Returns a copy 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 more