logo
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

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Construct an empty model

Performs the conversion.

Performs the conversion.

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

The amount of row in the model

Returns the data for a particular row. This function should be called with row < row_count().

Sets the data for a particular row. Read more

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

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

Returns an iterator visiting all elements of the model.

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

The type returned in the event of a conversion error.

Performs the conversion.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

Read this value from the supplied reader. Same as ReadEndian::read_from_little_endian().

Read this value from the supplied reader. Same as ReadEndian::read_from_big_endian().

Read this value from the supplied reader. Same as ReadEndian::read_from_native_endian().

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.