#[repr(C)]pub struct RustPluginMeta {
pub name: *const c_char,
pub version: *const c_char,
pub author: *const c_char,
pub copyright: *const c_char,
}Expand description
Plugin identity handed to the shim before the CPlugIn base is
constructed. Layout must match RustPluginMeta in shim/core.cpp.
Fields§
§name: *const c_char§version: *const c_char§copyright: *const c_charAuto Trait Implementations§
impl !Send for RustPluginMeta
impl !Sync for RustPluginMeta
impl Freeze for RustPluginMeta
impl RefUnwindSafe for RustPluginMeta
impl Unpin for RustPluginMeta
impl UnsafeUnpin for RustPluginMeta
impl UnwindSafe for RustPluginMeta
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