pub trait ISortColumnArray_Impl: Sized {
    // 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>

Object Safety§

This trait is not object safe.

Implementors§