Struct slint::ModelNotify
pub struct ModelNotify { /* private fields */ }
Expand description
Implementationsยง
ยงimpl ModelNotify
impl ModelNotify
pub fn row_changed(&self, row: usize)
pub fn row_changed(&self, row: usize)
Notify the peers that a specific row was changed
pub fn row_removed(&self, index: usize, count: usize)
pub fn row_removed(&self, index: usize, count: usize)
Notify the peers that rows were removed
pub fn reset(&self)
pub fn reset(&self)
Notify the peer that the model has been changed in some way and everything needs to be reloaded
Trait Implementationsยง
ยงimpl Default for ModelNotify
impl Default for ModelNotify
ยงfn default() -> ModelNotify
fn default() -> ModelNotify
Returns the โdefault valueโ for a type. Read more
ยงimpl ModelTracker for ModelNotify
impl ModelTracker for ModelNotify
ยงfn attach_peer(&self, peer: ModelPeer)
fn attach_peer(&self, peer: ModelPeer)
Attach one peer. The peer will be notified when the model changes
ยง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. Read more
ยง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. Read more
Auto Trait Implementationsยง
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> Instrument for T
impl<T> Instrument for T
sourceยงfn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourceยงfn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
ยง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()
.