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

A model backed by a SharedVector<T>

Implementations§

Add a row at the end of the model

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

Trait Implementations§

Returns the “default value” for a type. Read more
Converts to this type from the input type.
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(). Read more
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.

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

Returns the argument unchanged.

Calls U::from(self).

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

Convenience function that calls ModelTracker::track_row_data_changes before returning Model::row_data. Read more
Returns a new Model where all elements are mapped by the function map_function. This is a shortcut for MapModel::new(). Read more
Returns a new Model where the elements are filtered by the function filter_function. This is a shortcut for FilterModel::new(). Read more
Returns a new Model where the elements are sorted ascending. This is a shortcut for SortModel::new_ascending(). Read more
Returns a new Model where the elements are sorted by the function sort_function. This is a shortcut for SortModel::new(). 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.