pub struct SettingsSchemaKey { /* private fields */ }
Expand description
#GSettingsSchemaKey is an opaque data structure and can only be accessed using the following functions.
GLib type: Shared boxed type with reference counted clone semantics.
Implementations§
Source§impl SettingsSchemaKey
impl SettingsSchemaKey
Sourcepub fn as_ptr(&self) -> *mut GSettingsSchemaKey
pub fn as_ptr(&self) -> *mut GSettingsSchemaKey
Return the inner pointer to the underlying C value.
Sourcepub unsafe fn from_glib_ptr_borrow(ptr: &*mut GSettingsSchemaKey) -> &Self
pub unsafe fn from_glib_ptr_borrow(ptr: &*mut GSettingsSchemaKey) -> &Self
Borrows the underlying C value.
Source§impl SettingsSchemaKey
impl SettingsSchemaKey
Sourcepub fn default_value(&self) -> Variant
pub fn default_value(&self) -> Variant
Gets the default value for @self.
Note that this is the default value according to the schema. System administrator defaults and lockdown are not visible via this API.
§Returns
the default value for the key
Sourcepub fn description(&self) -> Option<GString>
pub fn description(&self) -> Option<GString>
Gets the description for @self.
If no description has been provided in the schema for @self, returns
None
.
The description can be one sentence to several paragraphs in length. Paragraphs are delimited with a double newline. Descriptions can be translated and the value returned from this function is is the current locale.
This function is slow. The summary and description information for the schemas is not stored in the compiled schema database so this function has to parse all of the source XML files in the schema directory.
§Returns
the description for @self, or None
Sourcepub fn range(&self) -> Variant
pub fn range(&self) -> Variant
Queries the range of a key.
This function will return a #GVariant that fully describes the range of values that are valid for @self.
The type of #GVariant returned is (sv)
. The string describes
the type of range restriction in effect. The type and meaning of
the value contained in the variant depends on the string.
If the string is 'type'
then the variant contains an empty array.
The element type of that empty array is the expected type of value
and all values of that type are valid.
If the string is 'enum'
then the variant contains an array
enumerating the possible values. Each item in the array is
a possible valid value and no other values are valid.
If the string is 'flags'
then the variant contains an array. Each
item in the array is a value that may appear zero or one times in an
array to be used as the value for this key. For example, if the
variant contained the array ['x', 'y']
then the valid values for
the key would be []
, ['x']
, ['y']
, ['x', 'y']
and
['y', 'x']
.
Finally, if the string is 'range'
then the variant contains a pair
of like-typed values – the minimum and maximum permissible values
for this key.
This information should not be used by normal programs. It is considered to be a hint for introspection purposes. Normal programs should already know what is permitted by their own schema. The format may change in any way in the future – but particularly, new forms may be added to the possibilities described above.
You should free the returned value with g_variant_unref() when it is no longer needed.
§Returns
a #GVariant describing the range
Sourcepub fn summary(&self) -> Option<GString>
pub fn summary(&self) -> Option<GString>
Gets the summary for @self.
If no summary has been provided in the schema for @self, returns
None
.
The summary is a short description of the purpose of the key; usually one short sentence. Summaries can be translated and the value returned from this function is is the current locale.
This function is slow. The summary and description information for the schemas is not stored in the compiled schema database so this function has to parse all of the source XML files in the schema directory.
§Returns
the summary for @self, or None
Sourcepub fn value_type(&self) -> VariantType
pub fn value_type(&self) -> VariantType
Trait Implementations§
Source§impl Clone for SettingsSchemaKey
impl Clone for SettingsSchemaKey
Source§impl Debug for SettingsSchemaKey
impl Debug for SettingsSchemaKey
Source§impl Display for SettingsSchemaKey
impl Display for SettingsSchemaKey
Source§impl From<SettingsSchemaKey> for Value
impl From<SettingsSchemaKey> for Value
Source§fn from(s: SettingsSchemaKey) -> Self
fn from(s: SettingsSchemaKey) -> Self
Source§impl HasParamSpec for SettingsSchemaKey
impl HasParamSpec for SettingsSchemaKey
type ParamSpec = ParamSpecBoxed
Source§type SetValue = SettingsSchemaKey
type SetValue = SettingsSchemaKey
type BuilderFn = fn(_: &str) -> ParamSpecBoxedBuilder<'_, SettingsSchemaKey>
fn param_spec_builder() -> Self::BuilderFn
Source§impl Hash for SettingsSchemaKey
impl Hash for SettingsSchemaKey
Source§impl Ord for SettingsSchemaKey
impl Ord for SettingsSchemaKey
Source§fn cmp(&self, other: &SettingsSchemaKey) -> Ordering
fn cmp(&self, other: &SettingsSchemaKey) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Source§impl PartialEq for SettingsSchemaKey
impl PartialEq for SettingsSchemaKey
Source§impl PartialOrd for SettingsSchemaKey
impl PartialOrd for SettingsSchemaKey
Source§impl StaticType for SettingsSchemaKey
impl StaticType for SettingsSchemaKey
Source§fn static_type() -> Type
fn static_type() -> Type
Self
.impl Eq for SettingsSchemaKey
impl StructuralPartialEq for SettingsSchemaKey
Auto Trait Implementations§
impl Freeze for SettingsSchemaKey
impl RefUnwindSafe for SettingsSchemaKey
impl !Send for SettingsSchemaKey
impl !Sync for SettingsSchemaKey
impl Unpin for SettingsSchemaKey
impl UnwindSafe for SettingsSchemaKey
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)