logo
pub struct FilterModel<M, F>(_) 
where
    M: 'static + Model,
    F: 'static + Fn(&<M as Model>::Data) -> bool
;
Expand description

Provides a filtered subset of rows by another Model.

When the other Model is updated, the FilterModel is updated accordingly.

Example

Here we have a VecModel holding SharedStrings. 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

Creates a new FilterModel based on the given wrapped_model and filtered by filter_function. Alternativly you can use ModelExt::filter on your Model.

Manually reapply the filter. You need to run this e.g. if the filtering function compares against mutable state and it has changed.

Gets the row index of the underlying unfiltered model for a given filtered row index.

Trait Implementations

The model data: A model is a set of row and each row has this data

The amount of row in the model

Returns the data for a particular row. This function should be called with row < row_count(). Read more

The implementation should return a reference to its ModelNotify field. Read more

Sets the data for a particular row. Read more

Returns an iterator visiting all elements of the model.

Return something that can be downcast’ed (typically self) Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Convenience function that calls ModelTracker::track_row_data_changes before returning Model::row_data. Read more

Returns a new Model where all elements are mapped by the function map_function. This is a shortcut for MapModel::new(). Read more

Returns a new Model where the elements are filtered by the function filter_function. This is a shortcut for FilterModel::new(). Read more

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more