[][src]Trait sixtyfps::Model

pub trait Model {
    type Data;
    pub fn row_count(&self) -> usize;
pub fn row_data(&self, row: usize) -> Self::Data;
pub fn attach_peer(&self, peer: ModelPeer); pub fn set_row_data(&self, _row: usize, _data: Self::Data) { ... }
pub fn iter(&'a self) -> ModelIterator<'a, Self::Data>

Notable traits for ModelIterator<'a, T>

impl<'a, T> Iterator for ModelIterator<'a, T> type Item = T;
{ ... } }

A Model is providing Data for the Repeater or ListView elements of the .60 language

Associated Types

type Data[src]

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

Loading content...

Required methods

pub fn row_count(&self) -> usize[src]

The amount of row in the model

pub fn row_data(&self, row: usize) -> Self::Data[src]

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

pub fn attach_peer(&self, peer: ModelPeer)[src]

Should forward to the internal ModelNotify::attach

Loading content...

Provided methods

pub fn set_row_data(&self, _row: usize, _data: Self::Data)[src]

Sets the data for a particular row. This function should be called with row < row_count(). If the model cannot support data changes, then it is ok to do nothing (default implementation). If the model can update the data, it should also call row_changed on its internal ModelNotify.

pub fn iter(&'a self) -> ModelIterator<'a, Self::Data>

Notable traits for ModelIterator<'a, T>

impl<'a, T> Iterator for ModelIterator<'a, T> type Item = T;
[src]

Returns an iterator visiting all elements of the model.

Loading content...

Implementations on Foreign Types

impl Model for usize[src]

type Data = i32

impl Model for bool[src]

type Data = ()

Loading content...

Implementors

impl<T> Model for ModelHandle<T>[src]

type Data = T

impl<T> Model for VecModel<T> where
    T: Clone
[src]

type Data = T

Loading content...