Skip to main content

IAkBaseArray_1Methods

Trait IAkBaseArray_1Methods 

Source
pub trait IAkBaseArray_1Methods<T0: ClassIdentity>: ClassIdentity {
Show 15 methods // Provided methods fn ctor(self, capacity: i32) where Self: Sized { ... } fn dispose(self) where Self: Sized { ... } fn finalize(self) where Self: Sized { ... } fn get_capacity(self) -> i32 where Self: Sized { ... } fn set_capacity(self, value: i32) where Self: Sized { ... } fn count(self) -> i32 where Self: Sized { ... } fn get_structure_size(self) -> i32 where Self: Sized + Into<IlInstance> { ... } fn default_construct_at_int_ptr(self, address: IntPtr) where Self: Sized { ... } fn release_allocated_memory_from_reference_at_int_ptr(self, address: IntPtr) where Self: Sized { ... } fn create_new_reference_from_int_ptr(self, address: IntPtr) -> T0 where Self: Sized + Into<IlInstance> { ... } fn clone_into_reference_from_int_ptr(self, address: IntPtr, other: T0) where Self: Sized + Into<IlInstance> { ... } fn get_item(self, index: i32) -> T0 where Self: Sized { ... } fn set_item(self, index: i32, value: T0) where Self: Sized { ... } fn get_buffer(self) -> IntPtr where Self: Sized { ... } fn get_object_ptr(self, index: i32) -> IntPtr where Self: Sized { ... }
}

Provided Methods§

Source

fn ctor(self, capacity: i32)
where Self: Sized,

Source

fn dispose(self)
where Self: Sized,

Source

fn finalize(self)
where Self: Sized,

Source

fn get_capacity(self) -> i32
where Self: Sized,

Source

fn set_capacity(self, value: i32)
where Self: Sized,

Source

fn count(self) -> i32
where Self: Sized,

Source

fn get_structure_size(self) -> i32
where Self: Sized + Into<IlInstance>,

Source

fn default_construct_at_int_ptr(self, address: IntPtr)
where Self: Sized,

Source

fn release_allocated_memory_from_reference_at_int_ptr(self, address: IntPtr)
where Self: Sized,

Source

fn create_new_reference_from_int_ptr(self, address: IntPtr) -> T0
where Self: Sized + Into<IlInstance>,

Source

fn clone_into_reference_from_int_ptr(self, address: IntPtr, other: T0)
where Self: Sized + Into<IlInstance>,

Source

fn get_item(self, index: i32) -> T0
where Self: Sized,

Source

fn set_item(self, index: i32, value: T0)
where Self: Sized,

Source

fn get_buffer(self) -> IntPtr
where Self: Sized,

Source

fn get_object_ptr(self, index: i32) -> IntPtr
where Self: Sized,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§