pub struct MapModel<M, F> { /* private fields */ }
Expand description
Provides rows that are generated by a map function based on the rows of another Model
When the other Model is updated, the MapModel
is updated accordingly.
Generic parameters:
M
the type of the wrappedModel
.F
the map function.
§Example
Here we have a VecModel
holding rows of a custom type Name
.
It is then mapped into a MapModel
of SharedString
s
#[derive(Clone)]
struct Name {
first: String,
last: String,
}
let model = VecModel::from(vec![
Name { first: "Hans".to_string(), last: "Emil".to_string() },
Name { first: "Max".to_string(), last: "Mustermann".to_string() },
Name { first: "Roman".to_string(), last: "Tisch".to_string() },
]);
let mapped_model = MapModel::new(model, |n|
slint::format!("{}, {}", n.last, n.first)
);
assert_eq!(mapped_model.row_data(0).unwrap(), SharedString::from("Emil, Hans"));
assert_eq!(mapped_model.row_data(1).unwrap(), SharedString::from("Mustermann, Max"));
assert_eq!(mapped_model.row_data(2).unwrap(), SharedString::from("Tisch, Roman"));
Alternatively you can use the shortcut ModelExt::map
.
let mapped_model = VecModel::from(vec![
Name { first: "Hans".to_string(), last: "Emil".to_string() },
Name { first: "Max".to_string(), last: "Mustermann".to_string() },
Name { first: "Roman".to_string(), last: "Tisch".to_string() },
])
.map(|n| slint::format!("{}, {}", n.last, n.first));
If you want to modify the underlying VecModel
you can give it a Rc
of the MapModel:
let model = Rc::new(VecModel::from(vec![
Name { first: "Hans".to_string(), last: "Emil".to_string() },
Name { first: "Max".to_string(), last: "Mustermann".to_string() },
Name { first: "Roman".to_string(), last: "Tisch".to_string() },
]));
let mapped_model = MapModel::new(model.clone(), |n|
slint::format!("{}, {}", n.last, n.first)
);
model.set_row_data(1, Name { first: "Minnie".to_string(), last: "Musterfrau".to_string() });
assert_eq!(mapped_model.row_data(0).unwrap(), SharedString::from("Emil, Hans"));
assert_eq!(mapped_model.row_data(1).unwrap(), SharedString::from("Musterfrau, Minnie"));
assert_eq!(mapped_model.row_data(2).unwrap(), SharedString::from("Tisch, Roman"));
Implementations§
§impl<M, F, T, U> MapModel<M, F>
impl<M, F, T, U> MapModel<M, F>
pub fn new(wrapped_model: M, map_function: F) -> MapModel<M, F>
pub fn new(wrapped_model: M, map_function: F) -> MapModel<M, F>
Creates a new MapModel based on the given wrapped_model
and map_function
.
Alternatively you can use ModelExt::map
on your Model.
pub fn source_model(&self) -> &M
pub fn source_model(&self) -> &M
Returns a reference to the inner model
Trait Implementations§
§impl<M, F, T, U> Model for MapModel<M, F>
impl<M, F, T, U> Model for MapModel<M, F>
§fn row_data(&self, row: usize) -> Option<<MapModel<M, F> as Model>::Data>
fn row_data(&self, row: usize) -> Option<<MapModel<M, F> as Model>::Data>
Returns the data for a particular row. Read more
§fn model_tracker(&self) -> &dyn ModelTracker
fn model_tracker(&self) -> &dyn ModelTracker
The implementation should return a reference to its
ModelNotify
field. Read more§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Return something that can be downcast’ed (typically self) Read more
§fn set_row_data(&self, _row: usize, _data: Self::Data)
fn set_row_data(&self, _row: usize, _data: Self::Data)
Sets the data for a particular row. Read more
Auto Trait Implementations§
impl<M, F> Freeze for MapModel<M, F>
impl<M, F> RefUnwindSafe for MapModel<M, F>where
M: RefUnwindSafe,
F: RefUnwindSafe,
impl<M, F> Send for MapModel<M, F>
impl<M, F> Sync for MapModel<M, F>
impl<M, F> Unpin for MapModel<M, F>
impl<M, F> UnwindSafe for MapModel<M, F>where
M: UnwindSafe,
F: UnwindSafe,
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
§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>
Convert
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>
Convert
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)
Convert
&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)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.§impl<T> DowncastSync for T
impl<T> DowncastSync for T
§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>
Converts
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>
Converts
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>
Convenience function that calls
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>
Returns a new Model where all elements are mapped by the function
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>
Returns a new Model where the elements are filtered by the function
filter_function
.
This is a shortcut for FilterModel::new()
.§fn sort(self) -> SortModel<Self, AscendingSortHelper>
fn sort(self) -> SortModel<Self, AscendingSortHelper>
Returns a new Model where the elements are sorted ascending.
This is a shortcut for
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>
Returns a new Model where the elements are sorted by the function
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,
Returns a new Model where the elements are reversed.
This is a shortcut for
ReverseModel::new()
.