pub struct GetRowsParams {
pub start_row: u32,
pub end_row: u32,
pub sort_model: Vec<SortModelItem>,
pub filter_model: HashMap<String, FilterModelType>,
}Expand description
Parameters passed to the callback function in
DataSourceBuilder::new.
Fields§
§start_row: u32The first row index to get.
end_row: u32The first row index to not get.
sort_model: Vec<SortModelItem>A vector of [SortModelItem] describing how the data is expected to be
sorted.
filter_model: HashMap<String, FilterModelType>Details of how to filter the requested data.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for GetRowsParams
impl RefUnwindSafe for GetRowsParams
impl Send for GetRowsParams
impl Sync for GetRowsParams
impl Unpin for GetRowsParams
impl UnwindSafe for GetRowsParams
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more