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
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)
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
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()
.