pub struct VariantType { /* private fields */ }
Expand description
Describes Variant
types.
The Variant
type system (based on the D-Bus one) describes types with
“type strings”. VariantType
is an owned immutable type string (you can
think of it as a Box<str>
statically guaranteed to be a valid type
string), &VariantTy
is a borrowed one (like &str
).
A type in the [type@GLib.Variant] type system.
This section introduces the [type@GLib.Variant] type system. It is based, in large part, on the D-Bus type system, with two major changes and some minor lifting of restrictions. The D-Bus specification, therefore, provides a significant amount of information that is useful when working with [type@GLib.Variant].
The first major change with respect to the D-Bus type system is the
introduction of maybe (or ‘nullable’) types. Any type in [type@GLib.Variant]
can be converted to a maybe type, in which case, nothing
(or null
)
becomes a valid value. Maybe types have been added by introducing the
character m
to type strings.
The second major change is that the [type@GLib.Variant] type system supports
the concept of ‘indefinite types’ — types that are less specific than
the normal types found in D-Bus. For example, it is possible to speak
of ‘an array of any type’ in [type@GLib.Variant], where the D-Bus type system
would require you to speak of ‘an array of integers’ or ‘an array of
strings’. Indefinite types have been added by introducing the
characters *
, ?
and r
to type strings.
Finally, all arbitrary restrictions relating to the complexity of types are lifted along with the restriction that dictionary entries may only appear nested inside of arrays.
Just as in D-Bus, [type@GLib.Variant] types are described with strings (‘type strings’). Subject to the differences mentioned above, these strings are of the same form as those found in D-Bus. Note, however: D-Bus always works in terms of messages and therefore individual type strings appear nowhere in its interface. Instead, ‘signatures’ are a concatenation of the strings of the type of each argument in a message. [type@GLib.Variant] deals with single values directly so [type@GLib.Variant] type strings always describe the type of exactly one value. This means that a D-Bus signature string is generally not a valid [type@GLib.Variant] type string — except in the case that it is the signature of a message containing exactly one argument.
An indefinite type is similar in spirit to what may be called an
abstract type in other type systems. No value can exist that has an
indefinite type as its type, but values can exist that have types
that are subtypes of indefinite types. That is to say,
Variant::type_()
will never return an indefinite type, but
calling [Variant::is_of_type()
][crate::Variant::is_of_type()] with an indefinite type may return
true. For example, you cannot have a value that represents ‘an
array of no particular type’, but you can have an ‘array of integers’
which certainly matches the type of ‘an array of no particular type’,
since ‘array of integers’ is a subtype of ‘array of no particular
type’.
This is similar to how instances of abstract classes may not
directly exist in other type systems, but instances of their
non-abstract subtypes may. For example, in GTK, no object that has
the type of GtkWidget
can
exist (since GtkWidget
is an abstract class), but a GtkWindow
can certainly be instantiated, and you would say that a GtkWindow
is a
GtkWidget
(since GtkWindow
is a subclass of GtkWidget
).
Two types may not be compared by value; use GLib::VariantType::equal()
or [is_subtype_of()
][Self::is_subtype_of()] May be copied using
GLib::VariantType::copy()
and freed using GLib::VariantType::free()
.
§GVariant Type Strings
A [type@GLib.Variant] type string can be any of the following:
- any basic type string (listed below)
v
,r
or*
- one of the characters
a
orm
, followed by another type string - the character
(
, followed by a concatenation of zero or more other type strings, followed by the character)
- the character
{
, followed by a basic type string (see below), followed by another type string, followed by the character}
A basic type string describes a basic type (as per
[is_basic()
][Self::is_basic()]) and is always a single character in
length. The valid basic type strings are b
, y
, n
, q
, i
, u
, x
,
t
, h
, d
, s
, o
, g
and ?
.
The above definition is recursive to arbitrary depth. aaaaai
and
(ui(nq((y)))s)
are both valid type strings, as is
a(aa(ui)(qna{ya(yd)}))
. In order to not hit memory limits,
[type@GLib.Variant] imposes a limit on recursion depth of 65 nested
containers. This is the limit in the D-Bus specification (64) plus one to
allow a GDBusMessage
to be nested in
a top-level tuple.
The meaning of each of the characters is as follows:
-
b
: the type string ofG_VARIANT_TYPE_BOOLEAN
; a boolean value. -
y
: the type string ofG_VARIANT_TYPE_BYTE
; a byte. -
n
: the type string ofG_VARIANT_TYPE_INT16
; a signed 16 bit integer. -
q
: the type string ofG_VARIANT_TYPE_UINT16
; an unsigned 16 bit integer. -
i
: the type string ofG_VARIANT_TYPE_INT32
; a signed 32 bit integer. -
u
: the type string ofG_VARIANT_TYPE_UINT32
; an unsigned 32 bit integer. -
x
: the type string ofG_VARIANT_TYPE_INT64
; a signed 64 bit integer. -
t
: the type string ofG_VARIANT_TYPE_UINT64
; an unsigned 64 bit integer. -
h
: the type string ofG_VARIANT_TYPE_HANDLE
; a signed 32 bit value that, by convention, is used as an index into an array of file descriptors that are sent alongside a D-Bus message. -
d
: the type string ofG_VARIANT_TYPE_DOUBLE
; a double precision floating point value. -
s
: the type string ofG_VARIANT_TYPE_STRING
; a string. -
o
: the type string ofG_VARIANT_TYPE_OBJECT_PATH
; a string in the form of a D-Bus object path. -
g
: the type string ofG_VARIANT_TYPE_SIGNATURE
; a string in the form of a D-Bus type signature. -
?
: the type string ofG_VARIANT_TYPE_BASIC
; an indefinite type that is a supertype of any of the basic types. -
v
: the type string ofG_VARIANT_TYPE_VARIANT
; a container type that contain any other type of value. -
a
: used as a prefix on another type string to mean an array of that type; the type stringai
, for example, is the type of an array of signed 32-bit integers. -
m
: used as a prefix on another type string to mean a ‘maybe’, or ‘nullable’, version of that type; the type stringms
, for example, is the type of a value that maybe contains a string, or maybe contains nothing. -
()
: used to enclose zero or more other concatenated type strings to create a tuple type; the type string(is)
, for example, is the type of a pair of an integer and a string. -
r
: the type string ofG_VARIANT_TYPE_TUPLE
; an indefinite type that is a supertype of any tuple type, regardless of the number of items. -
{}
: used to enclose a basic type string concatenated with another type string to create a dictionary entry type, which usually appears inside of an array to form a dictionary; the type stringa{sd}
, for example, is the type of a dictionary that maps strings to double precision floating point values.The first type (the basic type) is the key type and the second type is the value type. The reason that the first type is restricted to being a basic type is so that it can easily be hashed.
-
*
: the type string ofG_VARIANT_TYPE_ANY
; the indefinite type that is a supertype of all types. Note that, as with all type strings, this character represents exactly one type. It cannot be used inside of tuples to mean ‘any number of items’.
Any type string of a container that contains an indefinite type is,
itself, an indefinite type. For example, the type string a*
(corresponding to G_VARIANT_TYPE_ARRAY
) is an indefinite type
that is a supertype of every array type. (*s)
is a supertype
of all tuples that contain exactly two items where the second
item is a string.
a{?*}
is an indefinite type that is a supertype of all arrays
containing dictionary entries where the key is any basic type and
the value is any type at all. This is, by definition, a dictionary,
so this type string corresponds to G_VARIANT_TYPE_DICTIONARY
. Note
that, due to the restriction that the key of a dictionary entry must
be a basic type, {**}
is not a valid type string.
Implementations§
Source§impl VariantType
impl VariantType
Sourcepub fn new(type_string: &str) -> Result<VariantType, BoolError>
pub fn new(type_string: &str) -> Result<VariantType, BoolError>
Tries to create a VariantType
from a string slice.
Returns Ok
if the string is a valid type string, Err
otherwise.
Creates a new [type@GLib.VariantType] corresponding to the type string given
by @type_string.
It is appropriate to call GLib::VariantType::free()
on the return value.
It is a programmer error to call this function with an invalid type
string. Use [string_is_valid()
][Self::string_is_valid()] if you are unsure.
§type_string
a valid GVariant type string
§Returns
a new [type@GLib.VariantType]
Sourcepub fn new_dict_entry(
key_type: &VariantTy,
value_type: &VariantTy,
) -> VariantType
pub fn new_dict_entry( key_type: &VariantTy, value_type: &VariantTy, ) -> VariantType
Creates a VariantType
from a key and value type.
Constructs the type corresponding to a dictionary entry with a key
of type @key and a value of type @value.
It is appropriate to call GLib::VariantType::free()
on the return value.
§key
a basic type to use for the key
§value
a type to use for the value
§Returns
a new dictionary entry type Since 2.24
Sourcepub fn new_array(elem_type: &VariantTy) -> VariantType
pub fn new_array(elem_type: &VariantTy) -> VariantType
Sourcepub fn new_maybe(child_type: &VariantTy) -> VariantType
pub fn new_maybe(child_type: &VariantTy) -> VariantType
Sourcepub fn new_tuple(
items: impl IntoIterator<Item = impl AsRef<VariantTy>>,
) -> VariantType
pub fn new_tuple( items: impl IntoIterator<Item = impl AsRef<VariantTy>>, ) -> VariantType
Creates a VariantType
from a maybe element type.
Constructs a new tuple type, from @items.
@length is the number of items in @items, or -1
to indicate that
@items is NULL
-terminated.
It is appropriate to call GLib::VariantType::free()
on the return value.
§items
an array of types, one for each item
§Returns
a new tuple type Since 2.24
Sourcepub fn from_string(
type_string: impl Into<GString>,
) -> Result<VariantType, BoolError>
pub fn from_string( type_string: impl Into<GString>, ) -> Result<VariantType, BoolError>
Tries to create a VariantType
from an owned string.
Returns Ok
if the string is a valid type string, Err
otherwise.
Methods from Deref<Target = VariantTy>§
pub const BOOLEAN: &'static VariantTy = _
pub const BYTE: &'static VariantTy = _
pub const INT16: &'static VariantTy = _
pub const UINT16: &'static VariantTy = _
pub const INT32: &'static VariantTy = _
pub const UINT32: &'static VariantTy = _
pub const INT64: &'static VariantTy = _
pub const UINT64: &'static VariantTy = _
pub const DOUBLE: &'static VariantTy = _
pub const STRING: &'static VariantTy = _
pub const OBJECT_PATH: &'static VariantTy = _
pub const SIGNATURE: &'static VariantTy = _
pub const VARIANT: &'static VariantTy = _
pub const HANDLE: &'static VariantTy = _
pub const UNIT: &'static VariantTy = _
pub const ANY: &'static VariantTy = _
pub const BASIC: &'static VariantTy = _
pub const MAYBE: &'static VariantTy = _
pub const ARRAY: &'static VariantTy = _
pub const TUPLE: &'static VariantTy = _
pub const DICT_ENTRY: &'static VariantTy = _
pub const DICTIONARY: &'static VariantTy = _
pub const STRING_ARRAY: &'static VariantTy = _
pub const OBJECT_PATH_ARRAY: &'static VariantTy = _
pub const BYTE_STRING: &'static VariantTy = _
pub const BYTE_STRING_ARRAY: &'static VariantTy = _
pub const VARDICT: &'static VariantTy = _
Sourcepub fn is_definite(&self) -> bool
pub fn is_definite(&self) -> bool
Check if this variant type is a definite type.
Sourcepub fn is_container(&self) -> bool
pub fn is_container(&self) -> bool
Check if this variant type is a container type.
Sourcepub fn is_dict_entry(&self) -> bool
pub fn is_dict_entry(&self) -> bool
Check if this variant type is a dict entry type.
Sourcepub fn is_variant(&self) -> bool
pub fn is_variant(&self) -> bool
Check if this variant type is a variant.
Sourcepub fn is_subtype_of(&self, supertype: &Self) -> bool
pub fn is_subtype_of(&self, supertype: &Self) -> bool
Check if this variant type is a subtype of another.
Sourcepub fn element(&self) -> &VariantTy
pub fn element(&self) -> &VariantTy
Return the element type of this variant type.
§Panics
This function panics if not called with an array or maybe type.
Sourcepub fn tuple_types(&self) -> VariantTyIterator<'_> ⓘ
pub fn tuple_types(&self) -> VariantTyIterator<'_> ⓘ
Iterate over the types of this variant type.
§Panics
This function panics if not called with a tuple or dictionary entry type.
Sourcepub fn first(&self) -> Option<&VariantTy>
pub fn first(&self) -> Option<&VariantTy>
Return the first type of this variant type.
§Panics
This function panics if not called with a tuple or dictionary entry type.
Trait Implementations§
Source§impl AsRef<VariantTy> for VariantType
impl AsRef<VariantTy> for VariantType
Source§impl Borrow<VariantTy> for VariantType
impl Borrow<VariantTy> for VariantType
Source§impl Clone for VariantType
impl Clone for VariantType
Source§fn clone(&self) -> VariantType
fn clone(&self) -> VariantType
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for VariantType
impl Debug for VariantType
Source§impl Deref for VariantType
impl Deref for VariantType
Source§impl Display for VariantType
impl Display for VariantType
Source§impl Drop for VariantType
impl Drop for VariantType
Source§impl FromStr for VariantType
impl FromStr for VariantType
Source§impl Hash for VariantType
impl Hash for VariantType
Source§impl<'a, 'b> PartialEq<&'a VariantTy> for VariantType
impl<'a, 'b> PartialEq<&'a VariantTy> for VariantType
Source§impl<'a, 'b> PartialEq<&'a str> for VariantType
impl<'a, 'b> PartialEq<&'a str> for VariantType
Source§impl<'a, 'b> PartialEq<String> for VariantType
impl<'a, 'b> PartialEq<String> for VariantType
Source§impl<'a, 'b> PartialEq<VariantTy> for VariantType
impl<'a, 'b> PartialEq<VariantTy> for VariantType
Source§impl<'a, 'b> PartialEq<VariantType> for &'a VariantTy
impl<'a, 'b> PartialEq<VariantType> for &'a VariantTy
Source§impl<'a, 'b> PartialEq<VariantType> for &'a str
impl<'a, 'b> PartialEq<VariantType> for &'a str
Source§impl<'a, 'b> PartialEq<VariantType> for String
impl<'a, 'b> PartialEq<VariantType> for String
Source§impl<'a, 'b> PartialEq<VariantType> for VariantTy
impl<'a, 'b> PartialEq<VariantType> for VariantTy
Source§impl<'a, 'b> PartialEq<VariantType> for str
impl<'a, 'b> PartialEq<VariantType> for str
Source§impl<'a, 'b> PartialEq<str> for VariantType
impl<'a, 'b> PartialEq<str> for VariantType
Source§impl PartialEq for VariantType
impl PartialEq for VariantType
Source§impl StaticType for VariantType
impl StaticType for VariantType
Source§fn static_type() -> Type
fn static_type() -> Type
Self
.impl Eq for VariantType
impl Send for VariantType
impl Sync for VariantType
Auto Trait Implementations§
impl Freeze for VariantType
impl RefUnwindSafe for VariantType
impl Unpin for VariantType
impl UnwindSafe for VariantType
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§impl<T> IntoClosureReturnValue for T
impl<T> IntoClosureReturnValue for T
fn into_closure_return_value(self) -> Option<Value>
Source§impl<T> StaticTypeExt for Twhere
T: StaticType,
impl<T> StaticTypeExt for Twhere
T: StaticType,
Source§fn ensure_type()
fn ensure_type()
Source§impl<T> ToSendValue for T
impl<T> ToSendValue for T
Source§fn to_send_value(&self) -> SendValue
fn to_send_value(&self) -> SendValue
SendValue
clone of self
.