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
Trait Implementations
impl<T> Model for VecModel<T> where
T: 'static + Clone,
impl<T> Model for VecModel<T> where
T: 'static + Clone,
type Data = T
type Data = T
The model data: A model is a set of row and each row has this data
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()
.
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 more
Auto 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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> NoneValue for T where
T: Default,
impl<T> NoneValue for T where
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
sourceimpl<R, P> ReadPrimitive<R> for P where
R: Read + ReadEndian<P>,
P: Default,
impl<R, P> ReadPrimitive<R> for P where
R: Read + ReadEndian<P>,
P: Default,
sourcefn 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()
.
sourcefn read_from_big_endian(read: &mut R) -> Result<Self, Error>
fn read_from_big_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as ReadEndian::read_from_big_endian()
.
sourcefn read_from_native_endian(read: &mut R) -> Result<Self, Error>
fn read_from_native_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as ReadEndian::read_from_native_endian()
.