#[repr(C)]pub struct FRENamedFunction {
pub name: *const u8,
pub functionData: *mut c_void,
pub function: unsafe extern "C" fn(*mut c_void, *mut c_void, u32, *const *mut c_void) -> *mut c_void,
}Expand description
See FREFunction.
Fields§
§name: *const u8§functionData: *mut c_void§function: unsafe extern "C" fn(*mut c_void, *mut c_void, u32, *const *mut c_void) -> *mut c_voidTrait Implementations§
Auto Trait Implementations§
impl Freeze for FRENamedFunction
impl RefUnwindSafe for FRENamedFunction
impl !Send for FRENamedFunction
impl !Sync for FRENamedFunction
impl Unpin for FRENamedFunction
impl UnsafeUnpin for FRENamedFunction
impl UnwindSafe for FRENamedFunction
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