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§
fn ctor(self, capacity: i32)where
Self: Sized,
fn dispose(self)where
Self: Sized,
fn finalize(self)where
Self: Sized,
fn get_capacity(self) -> i32where
Self: Sized,
fn set_capacity(self, value: i32)where
Self: Sized,
fn count(self) -> i32where
Self: Sized,
fn get_structure_size(self) -> i32where
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) -> T0where
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) -> T0where
Self: Sized,
fn set_item(self, index: i32, value: T0)where
Self: Sized,
fn get_buffer(self) -> IntPtrwhere
Self: Sized,
fn get_object_ptr(self, index: i32) -> IntPtrwhere
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.