[][src]Struct gio_sys::GSettingsBackendClass

#[repr(C)]pub struct GSettingsBackendClass {
    pub parent_class: GObjectClass,
    pub read: Option<unsafe extern "C" fn(_: *mut GSettingsBackend, _: *const c_char, _: *const GVariantType, _: gboolean) -> *mut GVariant>,
    pub get_writable: Option<unsafe extern "C" fn(_: *mut GSettingsBackend, _: *const c_char) -> gboolean>,
    pub write: Option<unsafe extern "C" fn(_: *mut GSettingsBackend, _: *const c_char, _: *mut GVariant, _: gpointer) -> gboolean>,
    pub write_tree: Option<unsafe extern "C" fn(_: *mut GSettingsBackend, _: *mut GTree, _: gpointer) -> gboolean>,
    pub reset: Option<unsafe extern "C" fn(_: *mut GSettingsBackend, _: *const c_char, _: gpointer)>,
    pub subscribe: Option<unsafe extern "C" fn(_: *mut GSettingsBackend, _: *const c_char)>,
    pub unsubscribe: Option<unsafe extern "C" fn(_: *mut GSettingsBackend, _: *const c_char)>,
    pub sync: Option<unsafe extern "C" fn(_: *mut GSettingsBackend)>,
    pub get_permission: Option<unsafe extern "C" fn(_: *mut GSettingsBackend, _: *const c_char) -> *mut GPermission>,
    pub read_user_value: Option<unsafe extern "C" fn(_: *mut GSettingsBackend, _: *const c_char, _: *const GVariantType) -> *mut GVariant>,
    pub padding: [gpointer; 23],
}

Fields

parent_class: GObjectClassread: Option<unsafe extern "C" fn(_: *mut GSettingsBackend, _: *const c_char, _: *const GVariantType, _: gboolean) -> *mut GVariant>get_writable: Option<unsafe extern "C" fn(_: *mut GSettingsBackend, _: *const c_char) -> gboolean>write: Option<unsafe extern "C" fn(_: *mut GSettingsBackend, _: *const c_char, _: *mut GVariant, _: gpointer) -> gboolean>write_tree: Option<unsafe extern "C" fn(_: *mut GSettingsBackend, _: *mut GTree, _: gpointer) -> gboolean>reset: Option<unsafe extern "C" fn(_: *mut GSettingsBackend, _: *const c_char, _: gpointer)>subscribe: Option<unsafe extern "C" fn(_: *mut GSettingsBackend, _: *const c_char)>unsubscribe: Option<unsafe extern "C" fn(_: *mut GSettingsBackend, _: *const c_char)>sync: Option<unsafe extern "C" fn(_: *mut GSettingsBackend)>get_permission: Option<unsafe extern "C" fn(_: *mut GSettingsBackend, _: *const c_char) -> *mut GPermission>read_user_value: Option<unsafe extern "C" fn(_: *mut GSettingsBackend, _: *const c_char, _: *const GVariantType) -> *mut GVariant>padding: [gpointer; 23]

Trait Implementations

impl Clone for GSettingsBackendClass[src]

impl Copy for GSettingsBackendClass[src]

impl Debug for GSettingsBackendClass[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.