PropertiesSignals

Trait PropertiesSignals 

Source
pub trait PropertiesSignals {
    // Required method
    fn properties_changed<'life0, 'life1, 'life2, 'life3, 'life4, 'life5, 'async_trait>(
        &'life0 self,
        interface_name: InterfaceName<'life1>,
        changed_properties: HashMap<&'life2 str, Value<'life3>>,
        invalidated_properties: Cow<'life4, [&'life5 str]>,
    ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait,
             'life2: 'async_trait,
             'life3: 'async_trait,
             'life4: 'async_trait,
             'life5: 'async_trait;
}
Expand description

Trait providing all signal emission methods for Properties.

Required Methods§

Source

fn properties_changed<'life0, 'life1, 'life2, 'life3, 'life4, 'life5, 'async_trait>( &'life0 self, interface_name: InterfaceName<'life1>, changed_properties: HashMap<&'life2 str, Value<'life3>>, invalidated_properties: Cow<'life4, [&'life5 str]>, ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait, 'life3: 'async_trait, 'life4: 'async_trait, 'life5: 'async_trait,

Implementors§