#[repr(C)]pub struct AEGP_CollectionSuite2 {
pub AEGP_NewCollection: Option<unsafe extern "C" fn(plugin_id: AEGP_PluginID, collectionPH: *mut AEGP_Collection2H) -> A_Err>,
pub AEGP_DisposeCollection: Option<unsafe extern "C" fn(collectionH: AEGP_Collection2H) -> A_Err>,
pub AEGP_GetCollectionNumItems: Option<unsafe extern "C" fn(collectionH: AEGP_Collection2H, num_itemsPL: *mut A_u_long) -> A_Err>,
pub AEGP_GetCollectionItemByIndex: Option<unsafe extern "C" fn(collectionH: AEGP_Collection2H, indexL: A_u_long, collection_itemP: *mut AEGP_CollectionItemV2) -> A_Err>,
pub AEGP_CollectionPushBack: Option<unsafe extern "C" fn(collectionH: AEGP_Collection2H, collection_itemP: *const AEGP_CollectionItemV2) -> A_Err>,
pub AEGP_CollectionErase: Option<unsafe extern "C" fn(collectionH: AEGP_Collection2H, index_firstL: A_u_long, index_lastL: A_u_long) -> A_Err>,
}Fields§
§AEGP_NewCollection: Option<unsafe extern "C" fn(plugin_id: AEGP_PluginID, collectionPH: *mut AEGP_Collection2H) -> A_Err>§AEGP_DisposeCollection: Option<unsafe extern "C" fn(collectionH: AEGP_Collection2H) -> A_Err>§AEGP_GetCollectionNumItems: Option<unsafe extern "C" fn(collectionH: AEGP_Collection2H, num_itemsPL: *mut A_u_long) -> A_Err>§AEGP_GetCollectionItemByIndex: Option<unsafe extern "C" fn(collectionH: AEGP_Collection2H, indexL: A_u_long, collection_itemP: *mut AEGP_CollectionItemV2) -> A_Err>§AEGP_CollectionPushBack: Option<unsafe extern "C" fn(collectionH: AEGP_Collection2H, collection_itemP: *const AEGP_CollectionItemV2) -> A_Err>§AEGP_CollectionErase: Option<unsafe extern "C" fn(collectionH: AEGP_Collection2H, index_firstL: A_u_long, index_lastL: A_u_long) -> A_Err>Trait Implementations§
Source§impl Clone for AEGP_CollectionSuite2
impl Clone for AEGP_CollectionSuite2
Source§fn clone(&self) -> AEGP_CollectionSuite2
fn clone(&self) -> AEGP_CollectionSuite2
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_CollectionSuite2
impl Debug for AEGP_CollectionSuite2
impl Copy for AEGP_CollectionSuite2
Auto Trait Implementations§
impl Freeze for AEGP_CollectionSuite2
impl RefUnwindSafe for AEGP_CollectionSuite2
impl Send for AEGP_CollectionSuite2
impl Sync for AEGP_CollectionSuite2
impl Unpin for AEGP_CollectionSuite2
impl UnwindSafe for AEGP_CollectionSuite2
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