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