Struct i_slint_core::model::VecModel
source · pub struct VecModel<T> { /* private fields */ }Expand description
A model backed by a Vec<T>
Implementations§
source§impl<T: 'static> VecModel<T>
impl<T: 'static> VecModel<T>
sourcepub fn from_slice(slice: &[T]) -> ModelRc<T>where
T: Clone,
pub fn from_slice(slice: &[T]) -> ModelRc<T>where T: Clone,
Allocate a new model from a slice
sourcepub fn insert(&self, index: usize, value: T)
pub fn insert(&self, index: usize, value: T)
Inserts a row at position index. All rows after that are shifted. This function panics if index is > row_count().
sourcepub fn remove(&self, index: usize) -> T
pub fn remove(&self, index: usize) -> T
Remove the row at the given index from the model
Returns the removed row
sourcepub fn extend<I: IntoIterator<Item = T>>(&self, iter: I)
pub fn extend<I: IntoIterator<Item = T>>(&self, iter: I)
Extend the model with the content of the iterator
Similar to Vec::extend
source§impl<T: Clone + 'static> VecModel<T>
impl<T: Clone + 'static> VecModel<T>
sourcepub fn extend_from_slice(&self, src: &[T])
pub fn extend_from_slice(&self, src: &[T])
Appends all the elements in the slice to the model
Similar to Vec::extend_from_slice
Trait Implementations§
source§impl<T: Clone + 'static> Model for VecModel<T>
impl<T: Clone + 'static> Model for VecModel<T>
source§fn row_data(&self, row: usize) -> Option<Self::Data>
fn row_data(&self, row: usize) -> Option<Self::Data>
Returns the data for a particular row. This function should be called with
row < row_count(). Read moresource§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
source§fn model_tracker(&self) -> &dyn ModelTracker
fn model_tracker(&self) -> &dyn ModelTracker
The implementation should return a reference to its
ModelNotify field. Read moreAuto Trait Implementations§
impl<T> !RefUnwindSafe for VecModel<T>
impl<T> !Send for VecModel<T>
impl<T> !Sync for VecModel<T>
impl<T> Unpin for VecModel<T>where T: Unpin,
impl<T> !UnwindSafe for VecModel<T>
Blanket Implementations§
source§impl<T> ModelExt for Twhere
T: Model,
impl<T> ModelExt for Twhere T: Model,
source§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 moresource§fn map<F, U>(self, map_function: F) -> MapModel<Self, F>where
Self: Sized + 'static,
F: Fn(Self::Data) -> U + 'static,
fn map<F, U>(self, map_function: F) -> MapModel<Self, F>where Self: Sized + 'static, F: Fn(Self::Data) -> U + 'static,
Returns a new Model where all elements are mapped by the function
map_function.
This is a shortcut for MapModel::new().source§fn filter<F>(self, filter_function: F) -> FilterModel<Self, F>where
Self: Sized + 'static,
F: Fn(&Self::Data) -> bool + 'static,
fn filter<F>(self, filter_function: F) -> FilterModel<Self, F>where Self: Sized + 'static, F: Fn(&Self::Data) -> bool + 'static,
Returns a new Model where the elements are filtered by the function
filter_function.
This is a shortcut for FilterModel::new().