Struct i_slint_core::model::ModelRc

source ·
pub struct ModelRc<T>(_);
Expand description

A Reference counted Model.

The ModelRc struct holds something that implements the Model trait. This is used in for expressions in the .slint language. Array properties in the .slint language are holding a ModelRc.

An empty model can be constructed with ModelRc::default(). Use ModelRc::new() To construct a ModelRc from something that implements the Model trait. It is also possible to use the From trait to convert from Rc<dyn Model>.

Implementations§

source§

impl<T> ModelRc<T>

source

pub fn new(model: impl Model<Data = T> + 'static) -> Self

Trait Implementations§

source§

impl<T> Clone for ModelRc<T>

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T> Debug for ModelRc<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T> Default for ModelRc<T>

source§

fn default() -> Self

Construct an empty model

source§

impl<T, M: Model<Data = T> + 'static> From<Rc<M>> for ModelRc<T>

source§

fn from(model: Rc<M>) -> Self

Converts to this type from the input type.
source§

impl<T> From<Rc<dyn Model<Data = T> + 'static>> for ModelRc<T>

source§

fn from(model: Rc<dyn Model<Data = T> + 'static>) -> Self

Converts to this type from the input type.
source§

impl<T> Model for ModelRc<T>

§

type Data = T

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

fn row_count(&self) -> usize

The amount of row in the model
source§

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 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.
source§

impl<T> PartialEq<ModelRc<T>> for ModelRc<T>

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<T> TryInto<Rc<dyn Model<Data = T> + 'static>> for ModelRc<T>

§

type Error = ()

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

fn try_into(self) -> Result<Rc<dyn Model<Data = T>>, Self::Error>

Performs the conversion.

Auto Trait Implementations§

§

impl<T> !RefUnwindSafe for ModelRc<T>

§

impl<T> !Send for ModelRc<T>

§

impl<T> !Sync for ModelRc<T>

§

impl<T> Unpin for ModelRc<T>

§

impl<T> !UnwindSafe for ModelRc<T>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

const: unstable · 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 Twhere 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§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.