gio::prelude

Trait SettingsBackendExt

Source
pub trait SettingsBackendExt:
    IsA<SettingsBackend>
    + Sealed
    + 'static {
    // Provided methods
    fn path_writable_changed(&self, path: &str) { ... }
    fn writable_changed(&self, key: &str) { ... }
}
Expand description

Trait containing all SettingsBackend methods.

§Implementors

SettingsBackend

Provided Methods§

Source

fn path_writable_changed(&self, path: &str)

Signals that the writability of all keys below a given path may have changed.

Since GSettings performs no locking operations for itself, this call will always be made in response to external events.

§path

the name of the path

Source

fn writable_changed(&self, key: &str)

Signals that the writability of a single key has possibly changed.

Since GSettings performs no locking operations for itself, this call will always be made in response to external events.

§key

the name of the key

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§