pub struct VecModel<T> { /* private fields */ }
Expand description
A Model
backed by a Vec<T>
, using interior mutability.
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
Sourcepub fn clear(&self)
pub fn clear(&self)
Clears the model, removing all values
Similar to Vec::clear
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> FromIterator<T> for VecModel<T>
impl<T> FromIterator<T> for VecModel<T>
Source§fn from_iter<I: IntoIterator<Item = T>>(iter: I) -> Self
fn from_iter<I: IntoIterator<Item = T>>(iter: I) -> Self
Creates a value from an iterator. Read more
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. Read more
Source§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> !Freeze for VecModel<T>
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> 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
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>
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()
.Source§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()
.Source§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()
.Source§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()
.Source§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()
.