pub struct ModelNotify { /* private fields */ }
Expand description
Implementations§
Source§impl ModelNotify
impl ModelNotify
Sourcepub fn row_changed(&self, row: usize)
pub fn row_changed(&self, row: usize)
Notify the peers that a specific row was changed
Sourcepub fn row_removed(&self, index: usize, count: usize)
pub fn row_removed(&self, index: usize, count: usize)
Notify the peers that rows were removed
Trait Implementations§
Source§impl Default for ModelNotify
impl Default for ModelNotify
Source§fn default() -> ModelNotify
fn default() -> ModelNotify
Returns the “default value” for a type. Read more
Source§impl ModelTracker for ModelNotify
impl ModelTracker for ModelNotify
Source§fn attach_peer(&self, peer: ModelPeer<'_>)
fn attach_peer(&self, peer: ModelPeer<'_>)
Attach one peer. The peer will be notified when the model changes
Source§fn track_row_count_changes(&self)
fn track_row_count_changes(&self)
Register the model as a dependency to the current binding being evaluated, so
that it will be notified when the model changes its size.
Source§fn track_row_data_changes(&self, row: usize)
fn track_row_data_changes(&self, row: usize)
Register a row as a dependency to the current binding being evaluated, so that
it will be notified when the value of that row changes.
Auto Trait Implementations§
impl !Freeze for ModelNotify
impl !RefUnwindSafe for ModelNotify
impl !Send for ModelNotify
impl !Sync for ModelNotify
impl Unpin for ModelNotify
impl !UnwindSafe for ModelNotify
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