#[repr(C)]pub struct RawUnityInterfaces {
pub GetInterface: Option<unsafe extern "C" fn(UnityInterfaceGUID) -> *mut IUnityInterface>,
pub RegisterInterface: Option<unsafe extern "C" fn(UnityInterfaceGUID, *mut IUnityInterface)>,
pub GetInterfaceSplit: Option<unsafe extern "C" fn(u64, u64) -> *mut IUnityInterface>,
pub RegisterInterfaceSplit: Option<unsafe extern "C" fn(u64, u64, *mut IUnityInterface)>,
}
Fields§
§GetInterface: Option<unsafe extern "C" fn(UnityInterfaceGUID) -> *mut IUnityInterface>
§RegisterInterface: Option<unsafe extern "C" fn(UnityInterfaceGUID, *mut IUnityInterface)>
§GetInterfaceSplit: Option<unsafe extern "C" fn(u64, u64) -> *mut IUnityInterface>
§RegisterInterfaceSplit: Option<unsafe extern "C" fn(u64, u64, *mut IUnityInterface)>
Trait Implementations§
Source§impl Clone for IUnityInterfaces
impl Clone for IUnityInterfaces
Source§fn clone(&self) -> IUnityInterfaces
fn clone(&self) -> IUnityInterfaces
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 IUnityInterfaces
impl Debug for IUnityInterfaces
Source§impl Default for IUnityInterfaces
impl Default for IUnityInterfaces
Source§fn default() -> IUnityInterfaces
fn default() -> IUnityInterfaces
Returns the “default value” for a type. Read more
impl Copy for IUnityInterfaces
Auto Trait Implementations§
impl Freeze for IUnityInterfaces
impl RefUnwindSafe for IUnityInterfaces
impl Send for IUnityInterfaces
impl Sync for IUnityInterfaces
impl Unpin for IUnityInterfaces
impl UnwindSafe for IUnityInterfaces
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