#[repr(C)]pub struct AEGP_MemorySuite1 {
pub AEGP_NewMemHandle: Option<unsafe extern "C" fn(plugin_id: AEGP_PluginID, whatZ: *const A_char, size: AEGP_MemSize, flags: AEGP_MemFlag, memPH: *mut AEGP_MemHandle) -> A_Err>,
pub AEGP_FreeMemHandle: Option<unsafe extern "C" fn(memH: AEGP_MemHandle) -> A_Err>,
pub AEGP_LockMemHandle: Option<unsafe extern "C" fn(memH: AEGP_MemHandle, ptr_to_ptr: *mut *mut c_void) -> A_Err>,
pub AEGP_UnlockMemHandle: Option<unsafe extern "C" fn(memH: AEGP_MemHandle) -> A_Err>,
pub AEGP_GetMemHandleSize: Option<unsafe extern "C" fn(memH: AEGP_MemHandle, sizeP: *mut AEGP_MemSize) -> A_Err>,
pub AEGP_ResizeMemHandle: Option<unsafe extern "C" fn(whatZ: *const A_char, new_size: AEGP_MemSize, memH: AEGP_MemHandle) -> A_Err>,
pub AEGP_SetMemReportingOn: Option<unsafe extern "C" fn(turn_OnB: A_Boolean) -> A_Err>,
pub AEGP_GetMemStats: Option<unsafe extern "C" fn(plugin_id: AEGP_PluginID, countPL: *mut A_long, sizePL: *mut A_long) -> A_Err>,
}Fields§
§AEGP_NewMemHandle: Option<unsafe extern "C" fn(plugin_id: AEGP_PluginID, whatZ: *const A_char, size: AEGP_MemSize, flags: AEGP_MemFlag, memPH: *mut AEGP_MemHandle) -> A_Err>§AEGP_FreeMemHandle: Option<unsafe extern "C" fn(memH: AEGP_MemHandle) -> A_Err>§AEGP_LockMemHandle: Option<unsafe extern "C" fn(memH: AEGP_MemHandle, ptr_to_ptr: *mut *mut c_void) -> A_Err>§AEGP_UnlockMemHandle: Option<unsafe extern "C" fn(memH: AEGP_MemHandle) -> A_Err>§AEGP_GetMemHandleSize: Option<unsafe extern "C" fn(memH: AEGP_MemHandle, sizeP: *mut AEGP_MemSize) -> A_Err>§AEGP_ResizeMemHandle: Option<unsafe extern "C" fn(whatZ: *const A_char, new_size: AEGP_MemSize, memH: AEGP_MemHandle) -> A_Err>§AEGP_SetMemReportingOn: Option<unsafe extern "C" fn(turn_OnB: A_Boolean) -> A_Err>§AEGP_GetMemStats: Option<unsafe extern "C" fn(plugin_id: AEGP_PluginID, countPL: *mut A_long, sizePL: *mut A_long) -> A_Err>Trait Implementations§
Source§impl Clone for AEGP_MemorySuite1
impl Clone for AEGP_MemorySuite1
Source§fn clone(&self) -> AEGP_MemorySuite1
fn clone(&self) -> AEGP_MemorySuite1
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 AEGP_MemorySuite1
impl Debug for AEGP_MemorySuite1
impl Copy for AEGP_MemorySuite1
Auto Trait Implementations§
impl Freeze for AEGP_MemorySuite1
impl RefUnwindSafe for AEGP_MemorySuite1
impl Send for AEGP_MemorySuite1
impl Sync for AEGP_MemorySuite1
impl Unpin for AEGP_MemorySuite1
impl UnwindSafe for AEGP_MemorySuite1
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