#[repr(C)]pub struct retro_vfs_interface_info {
    pub required_interface_version: u32,
    pub iface: *mut retro_vfs_interface,
}Fields
required_interface_version: u32Set 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_interfaceFrontend 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
Auto Trait Implementations
impl RefUnwindSafe for retro_vfs_interface_info
impl !Send for retro_vfs_interface_info
impl !Sync for retro_vfs_interface_info
impl Unpin for retro_vfs_interface_info
impl UnwindSafe for retro_vfs_interface_info
Blanket Implementations
Mutably borrows from an owned value. Read more
