pub struct VecModel<T> { /* private fields */ }
Expand description
A Model
backed by a Vec<T>
Implementations§
§impl<T> VecModel<T>where
T: 'static,
impl<T> VecModel<T>where T: 'static,
pub fn from_slice(slice: &[T]) -> ModelRc<T>where
T: Clone,
pub fn from_slice(slice: &[T]) -> ModelRc<T>where T: Clone,
Allocate a new model from a slice
pub fn push(&self, value: T)
pub fn push(&self, value: T)
Add a row at the end of the model
pub fn insert(&self, index: usize, value: T)
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().
pub fn remove(&self, index: usize) -> T
pub fn remove(&self, index: usize) -> T
Remove the row at the given index from the model
Returns the removed row
pub fn extend<I>(&self, iter: I)where
I: IntoIterator<Item = T>,
pub fn extend<I>(&self, iter: I)where I: IntoIterator<Item = T>,
Extend the model with the content of the iterator
Similar to Vec::extend
§impl<T> VecModel<T>where
T: Clone + 'static,
impl<T> VecModel<T>where T: Clone + 'static,
pub fn extend_from_slice(&self, src: &[T])
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§
§impl<T> Model for VecModel<T>where
T: Clone + 'static,
impl<T> Model for VecModel<T>where T: Clone + 'static,
§fn row_data(&self, row: usize) -> Option<<VecModel<T> as Model>::Data>
fn row_data(&self, row: usize) -> Option<<VecModel<T> as Model>::Data>
Returns the data for a particular row. This function should be called with
row < row_count()
. Read more§fn set_row_data(&self, row: usize, data: <VecModel<T> as Model>::Data)
fn set_row_data(&self, row: usize, data: <VecModel<T> as Model>::Data)
Sets the data for a particular row. Read more
§fn model_tracker(&self) -> &dyn ModelTracker
fn model_tracker(&self) -> &dyn ModelTracker
The implementation should return a reference to its
ModelNotify
field. Read moreAuto Trait Implementations§
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> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> ModelExt for Twhere
T: Model,
impl<T> ModelExt for Twhere T: Model,
§fn row_data_tracked(&self, row: usize) -> Option<Self::Data>
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§fn map<F, U>(self, map_function: F) -> MapModel<Self, F>where
Self: Sized + 'static,
F: Fn(Self::Data) -> U + 'static,
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()
.§fn filter<F>(self, filter_function: F) -> FilterModel<Self, F>where
Self: Sized + 'static,
F: Fn(&Self::Data) -> bool + 'static,
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()
.§fn sort(self) -> SortModel<Self, AscendingSortHelper>where
Self: Sized + 'static,
Self::Data: Ord,
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()
.§fn sort_by<F>(self, sort_function: F) -> SortModel<Self, F>where
Self: Sized + 'static,
F: FnMut(&Self::Data, &Self::Data) -> Ordering + 'static,
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()
.§fn reverse(self) -> ReverseModel<Self>where
Self: Sized + 'static,
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()
.§impl<T> NoneValue for Twhere
T: Default,
impl<T> NoneValue for Twhere T: Default,
type NoneType = T
§fn null_value() -> T
fn null_value() -> T
The none-equivalent value.
§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<R, P> ReadPrimitive<R> for Pwhere
R: Read + ReadEndian<P>,
P: Default,
impl<R, P> ReadPrimitive<R> for Pwhere R: Read + ReadEndian<P>, P: Default,
source§fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as
ReadEndian::read_from_little_endian()
.