Struct i_slint_core::model::SharedVectorModel

source ·
pub struct SharedVectorModel<T> { /* private fields */ }
Expand description

A model backed by a SharedVector<T>

Implementations§

source§

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

source

pub fn push(&self, value: T)

Add a row at the end of the model

source§

impl<T> SharedVectorModel<T>

source

pub fn shared_vector(&self) -> SharedVector<T>

Returns a clone of the model’s backing shared vector.

Trait Implementations§

source§

impl<T: Default> Default for SharedVectorModel<T>

source§

fn default() -> SharedVectorModel<T>

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

impl<T> From<SharedVector<T>> for SharedVectorModel<T>

source§

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

Converts to this type from the input type.
source§

impl<T: Clone + 'static> Model for SharedVectorModel<T>

§

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§

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

§

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

§

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.