pub struct FuncEntry {
pub func_id: u32,
pub module_name: String,
pub class_name: String,
pub func_name: String,
pub rust_func_name: String,
pub func: FunctionInfo,
pub cpp_class_name: String,
pub header: String,
}Expand description
An entry in the global function table.
Fields§
§func_id: u32§module_name: String§class_name: String§func_name: String§rust_func_name: StringThe actual resolved Rust function name (may include _1, _2 suffix for overloads).
func: FunctionInfo§cpp_class_name: StringThe C++ class name (with prefix, e.g. “AActor”).
header: StringThe header file to include.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FuncEntry
impl RefUnwindSafe for FuncEntry
impl Send for FuncEntry
impl Sync for FuncEntry
impl Unpin for FuncEntry
impl UnsafeUnpin for FuncEntry
impl UnwindSafe for FuncEntry
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