Struct slint::FilterModel
pub struct FilterModel<M, F>(/* private fields */)
where
M: Model + 'static,
F: Fn(&<M as Model>::Data) -> bool + 'static;
Expand description
Provides a filtered subset of rows by another Model
.
When the other Model is updated, the FilterModel
is updated accordingly.
Generic parameters:
M
the type of the wrappedModel
.F
the filter function.
§Example
Here we have a VecModel
holding crate::SharedString
s.
It is then filtered into a FilterModel
.
let model = VecModel::from(vec![
SharedString::from("Lorem"),
SharedString::from("ipsum"),
SharedString::from("dolor"),
]);
let filtered_model = FilterModel::new(model, |s| s.contains('o'));
assert_eq!(filtered_model.row_data(0).unwrap(), SharedString::from("Lorem"));
assert_eq!(filtered_model.row_data(1).unwrap(), SharedString::from("dolor"));
Alternatively you can use the shortcut ModelExt::filter
.
let filtered_model = VecModel::from(vec![
SharedString::from("Lorem"),
SharedString::from("ipsum"),
SharedString::from("dolor"),
]).filter(|s| s.contains('o'));
If you want to modify the underlying VecModel
you can give it a Rc
of the FilterModel:
let model = Rc::new(VecModel::from(vec![
SharedString::from("Lorem"),
SharedString::from("ipsum"),
SharedString::from("dolor"),
]));
let filtered_model = FilterModel::new(model.clone(), |s| s.contains('o'));
assert_eq!(filtered_model.row_data(0).unwrap(), SharedString::from("Lorem"));
assert_eq!(filtered_model.row_data(1).unwrap(), SharedString::from("dolor"));
model.set_row_data(1, SharedString::from("opsom"));
assert_eq!(filtered_model.row_data(0).unwrap(), SharedString::from("Lorem"));
assert_eq!(filtered_model.row_data(1).unwrap(), SharedString::from("opsom"));
assert_eq!(filtered_model.row_data(2).unwrap(), SharedString::from("dolor"));
Implementations§
§impl<M, F> FilterModel<M, F>
impl<M, F> FilterModel<M, F>
pub fn new(wrapped_model: M, filter_function: F) -> FilterModel<M, F>
pub fn new(wrapped_model: M, filter_function: F) -> FilterModel<M, F>
Creates a new FilterModel based on the given wrapped_model
and filtered by filter_function
.
Alternatively you can use ModelExt::filter
on your Model.
pub fn reset(&self)
pub fn reset(&self)
Manually reapply the filter. You need to run this e.g. if the filtering function depends on mutable state and it has changed.
pub fn unfiltered_row(&self, filtered_row: usize) -> usize
pub fn unfiltered_row(&self, filtered_row: usize) -> usize
Gets the row index of the underlying unfiltered model for a given filtered row index.
pub fn source_model(&self) -> &M
pub fn source_model(&self) -> &M
Returns a reference to the inner model
Trait Implementations§
§impl<M, F> Model for FilterModel<M, F>
impl<M, F> Model for FilterModel<M, F>
§fn row_data(&self, row: usize) -> Option<<FilterModel<M, F> as Model>::Data>
fn row_data(&self, row: usize) -> Option<<FilterModel<M, F> as Model>::Data>
§fn set_row_data(&self, row: usize, data: <FilterModel<M, F> as Model>::Data)
fn set_row_data(&self, row: usize, data: <FilterModel<M, F> as Model>::Data)
§fn model_tracker(&self) -> &dyn ModelTracker
fn model_tracker(&self) -> &dyn ModelTracker
ModelNotify
field. Read moreAuto Trait Implementations§
impl<M, F> Freeze for FilterModel<M, F>
impl<M, F> !RefUnwindSafe for FilterModel<M, F>
impl<M, F> !Send for FilterModel<M, F>
impl<M, F> !Sync for FilterModel<M, F>
impl<M, F> Unpin for FilterModel<M, F>
impl<M, F> !UnwindSafe for FilterModel<M, F>
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
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more§impl<T> ModelExt for Twhere
T: Model,
impl<T> ModelExt for Twhere
T: Model,
§fn row_data_tracked(&self, row: usize) -> Option<Self::Data>
fn row_data_tracked(&self, row: usize) -> Option<Self::Data>
ModelTracker::track_row_data_changes
before returning Model::row_data
. Read more§fn map<F, U>(self, map_function: F) -> MapModel<Self, F>
fn map<F, U>(self, map_function: F) -> MapModel<Self, F>
map_function
.
This is a shortcut for MapModel::new()
.§fn filter<F>(self, filter_function: F) -> FilterModel<Self, F>
fn filter<F>(self, filter_function: F) -> FilterModel<Self, F>
filter_function
.
This is a shortcut for FilterModel::new()
.§fn sort(self) -> SortModel<Self, AscendingSortHelper>
fn sort(self) -> SortModel<Self, AscendingSortHelper>
SortModel::new_ascending()
.§fn sort_by<F>(self, sort_function: F) -> SortModel<Self, F>
fn sort_by<F>(self, sort_function: F) -> SortModel<Self, F>
sort_function
.
This is a shortcut for SortModel::new()
.§fn reverse(self) -> ReverseModel<Self>where
Self: Sized + 'static,
fn reverse(self) -> ReverseModel<Self>where
Self: Sized + 'static,
ReverseModel::new()
.