i_slint_core::model

Struct VecModel

Source
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>

Source

pub fn from_slice(slice: &[T]) -> ModelRc<T>
where T: Clone,

Allocate a new model from a slice

Source

pub fn push(&self, value: T)

Add a row at the end of the model

Source

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().

Source

pub fn remove(&self, index: usize) -> T

Remove the row at the given index from the model

Returns the removed row

Source

pub fn set_vec(&self, new: impl Into<Vec<T>>)

Replace inner Vec with new data

Source

pub fn extend<I: IntoIterator<Item = T>>(&self, iter: I)

Extend the model with the content of the iterator

Similar to Vec::extend

Source

pub fn clear(&self)

Clears the model, removing all values

Similar to Vec::clear

Source

pub fn swap(&self, a: usize, b: usize)

Swaps two elements in the model.

Source§

impl<T: Clone + 'static> VecModel<T>

Source

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: Default> Default for VecModel<T>

Source§

fn default() -> VecModel<T>

Returns the “default value” for a type. Read more
Source§

impl<T> From<Vec<T>> for VecModel<T>

Source§

fn from(array: Vec<T>) -> Self

Converts to this type from the input type.
Source§

impl<T> FromIterator<T> for VecModel<T>

Source§

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>

Source§

type Data = T

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

fn row_count(&self) -> usize

The number of rows in the model
Source§

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)

Sets the data for a particular row. Read more
Source§

fn model_tracker(&self) -> &dyn ModelTracker

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

fn as_any(&self) -> &dyn Any

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

fn iter(&self) -> ModelIterator<'_, Self::Data>
where Self: Sized,

Returns an iterator visiting all elements of the model.

Auto 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> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T> ModelExt for T
where T: Model,

Source§

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
Source§

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,

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>
where Self: Sized + 'static, Self::Data: Ord,

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>
where Self: Sized + 'static, F: FnMut(&Self::Data, &Self::Data) -> Ordering + 'static,

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,

Returns a new Model where the elements are reversed. This is a shortcut for ReverseModel::new().
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.