Trait ISortColumnArray_Impl
pub trait ISortColumnArray_Impl: IUnknownImpl {
// Required methods
fn GetCount(&self) -> Result<u32>;
fn GetAt(&self, index: u32, sortcolumn: *mut SORTCOLUMN) -> Result<()>;
fn GetSortType(&self) -> Result<SORT_ORDER_TYPE>;
}
Required Methods§
fn GetCount(&self) -> Result<u32>
fn GetAt(&self, index: u32, sortcolumn: *mut SORTCOLUMN) -> Result<()>
fn GetSortType(&self) -> Result<SORT_ORDER_TYPE>
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.