pub trait IAkPositionArray: IObject {
// Provided methods
fn m_buffer(self) -> IntPtr { ... }
fn set_m_buffer(self, value: IntPtr) { ... }
fn m_current(self) -> IntPtr { ... }
fn set_m_current(self, value: IntPtr) { ... }
fn m_max_count(self) -> u32 { ... }
fn set_m_max_count(self, value: u32) { ... }
}Provided Methods§
fn m_buffer(self) -> IntPtr
fn set_m_buffer(self, value: IntPtr)
fn m_current(self) -> IntPtr
fn set_m_current(self, value: IntPtr)
fn m_max_count(self) -> u32
fn set_m_max_count(self, value: u32)
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.