Struct idalib_sys::loader::plugin_t
#[repr(C, align(8))]pub struct plugin_t { /* private fields */ }
Expand description
A plugin is a module in the plugins subdirectory that can perform an action asked by the user. (usually via pressing a hotkey)
Trait Implementations§
§impl ExternType for plugin_t
impl ExternType for plugin_t
§impl MakeCppStorage for plugin_t
impl MakeCppStorage for plugin_t
§unsafe fn allocate_uninitialized_cpp_storage() -> *mut plugin_t
unsafe fn allocate_uninitialized_cpp_storage() -> *mut plugin_t
Allocates heap space for this type in C++ and return a pointer
to that space, but do not initialize that space (i.e. do not
yet call a constructor). Read more
§unsafe fn free_uninitialized_cpp_storage(arg0: *mut plugin_t)
unsafe fn free_uninitialized_cpp_storage(arg0: *mut plugin_t)
Frees a C++ allocation which has not yet
had a constructor called. Read more
impl UniquePtrTarget for plugin_t
impl VectorElement for plugin_t
impl WeakPtrTarget for plugin_t
Auto Trait Implementations§
impl !Freeze for plugin_t
impl !RefUnwindSafe for plugin_t
impl !Send for plugin_t
impl !Sync for plugin_t
impl !Unpin for plugin_t
impl UnwindSafe for plugin_t
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