Expand description
Rust GLib and GObject bindings
Rust bindings and wrappers for GLib, part of gtk-rs-core.
GLib 2.48 is the lowest supported version for the underlying library.
This library contains bindings to GLib and GObject types and APIs as well as common building blocks used in both handmade and machine generated bindings to GTK and other GLib-based libraries.
It is the foundation for higher level libraries with uniform Rusty (safe and strongly typed) APIs. It avoids exposing GLib-specific data types where possible and is not meant to provide comprehensive GLib bindings, which would often amount to duplicating the Rust Standard Library or other utility crates.
Minimum supported Rust version
Currently, the minimum supported Rust version is 1.56.0.
Dynamic typing
Most types in the GLib family have Type identifiers.
Their corresponding Rust types implement the StaticType trait.
A dynamically typed Value can carry values of any StaticType.
Variants can carry values of StaticVariantType.
Errors
Errors are represented by Error, which can
carry values from various error domains such as
FileError.
Objects
Each class and interface has a corresponding smart pointer struct
representing an instance of that type (e.g. Object for GObject or
gtk::Widget for GtkWidget). They are reference counted and feature
interior mutability similarly to Rust’s Rc<RefCell<T>> idiom.
Consequently, cloning objects is cheap and their methods never require
mutable borrows. Two smart pointers are equal if they point to the same
object.
The root of the object hierarchy is Object.
Inheritance and subtyping is denoted with the IsA
marker trait. The Cast trait enables upcasting
and downcasting.
Interfaces and non-leaf classes also have corresponding traits (e.g.
ObjectExt or gtk::WidgetExt), which are blanketly implemented for all
their subtypes.
You can create new subclasses of Object or other object types. Look at
the module’s documentation for further details and a code example.
Under the hood
GLib-based libraries largely operate on pointers to various boxed or
reference counted structures so the bindings have to implement corresponding
smart pointers (wrappers), which encapsulate resource management and safety
checks. Such wrappers are defined via the
wrapper macro, which uses abstractions
defined in the wrapper, boxed,
shared and object modules.
The translate module defines and partly implements
conversions between high level Rust types (including the aforementioned
wrappers) and their FFI counterparts.
Documentation
Using
We recommend using crates from crates.io, as demonstrated here.
If you want to track the bleeding edge, use the git dependency instead:
[dependencies]
glib = { git = "https://github.com/gtk-rs/gtk-rs-core.git", package = "glib" }
Avoid mixing versioned and git crates like this:
# This will not compile
[dependencies]
glib = "0.13"
glib = { git = "https://github.com/gtk-rs/gtk-rs-core.git", package = "glib" }
License
glib is available under the MIT License, please refer to it.
Re-exports
pub use ffi;pub use gobject_ffi;pub use self::closure::Closure;pub use self::closure::RustClosure;pub use self::error::BoolError;pub use self::error::Error;pub use self::object::Cast;pub use self::object::Class;pub use self::object::InitiallyUnowned;pub use self::object::Interface;pub use self::object::IsA;pub use self::object::Object;pub use self::object::ObjectExt;pub use self::object::ObjectType;pub use self::object::SendWeakRef;pub use self::object::WeakRef;pub use self::signal::signal_handler_block;pub use self::signal::signal_handler_disconnect;pub use self::signal::signal_handler_unblock;pub use self::signal::signal_stop_emission_by_name;pub use self::signal::SignalHandlerId;pub use self::types::ILong;pub use self::types::Pointer;pub use self::types::StaticType;pub use self::types::StaticTypeExt;pub use self::types::Type;pub use self::types::ULong;pub use self::value::BoxedValue;pub use self::value::SendValue;pub use self::value::ToSendValue;pub use self::value::ToValue;pub use self::value::Value;pub use self::variant::FixedSizeVariantArray;pub use self::variant::FixedSizeVariantType;pub use self::variant::FromVariant;pub use self::variant::StaticVariantType;pub use self::variant::ToVariant;pub use self::variant::Variant;pub use collections::List;pub use collections::PtrSlice;pub use collections::SList;pub use collections::Slice;pub use self::send_unique::SendUnique;pub use self::send_unique::SendUniqueCell;pub use self::char::*;pub use self::source::*;
Modules
IMPLBoxed wrapper implementation.IMPLBoxedInline wrapper implementation.Errorbinding and helper trait.IMPLObject wrapper implementation andObjectbinding.- Traits and essential types intended for blanket imports.
IMPLShared (reference counted) wrapper implementation.IMPLLow level signal support.- Module containing infrastructure for subclassing
GObjects and registering boxed types. - Translation between GLib/GLib-based FFI types and their Rust counterparts.
- Runtime type information.
Valuebinding and helper traits.Variantbinding and helper traits.IMPLThewrapper!macro and miscellaneous wrapper traits.
Macros
- Generic error used for functions that fail without any further information
- Macro for passing variables as strong or weak references into a closure.
- Macro for creating a
Closureobject. This is a wrapper aroundClosure::newthat automatically type checks its arguments at run-time. - The same as
closure!but usesClosure::new_localas a constructor. This is useful for closures which can’t be sent across threads. See the documentation ofclosure!for details. - debug
log_macrosA macro which behaves exactly aslog::debug!except that it sets the current log target to the contents of aG_LOG_DOMAINconstant (and fails to build if not defined). - error
log_macrosA macro which behaves exactly aslog::error!except that it sets the current log target to the contents of aG_LOG_DOMAINconstant (and fails to build if not defined). - Macro used to log using GLib logging system. It uses g_log.
- Macro used to log using GLib logging system. It uses g_log.
- Macro used to log using GLib logging system. It uses g_log.
- Macro used to log using GLib logging system. It uses g_log.
- Macro used to log using GLib logging system. It uses g_log.
- Macro used to log using GLib logging system. It uses g_log.
- Macro used to print messages. It uses g_print.
- Macro used to print error messages. It uses g_printerr.
- Macro used to log using GLib logging system. It uses g_log.
- Wrapper implementations for BoxedInline types. See
wrapper!. - Wrapper implementations for Boxed types. See
wrapper!. - ObjectType implementations for Object types. See
wrapper!. - Wrapper implementations for shared types. See
wrapper!. - Converts a static string literal into a static nul-terminated string.
- info
log_macrosA macro which behaves exactly aslog::info!except that it sets the current log target to the contents of aG_LOG_DOMAINconstant (and fails to build if not defined). - Macro used to log using GLib structured logging system.
- trace
log_macrosA macro which behaves exactly aslog::trace!except that it sets the current log target to the contents of aG_LOG_DOMAINconstant (and fails to build if not defined). - warn
log_macrosA macro which behaves exactly aslog::warn!except that it sets the current log target to the contents of aG_LOG_DOMAINconstant (and fails to build if not defined). - Defines a wrapper type and implements the appropriate traits.
Structs
- Flags to be passed to [
ObjectExtManual::bind_property()][crate::prelude::ObjectExtManual::bind_property()] or [ObjectExtManual::bind_property_full()][crate::prelude::ObjectExtManual::bind_property_full()]. - BindingGroup
v2_72TheBindingGroupcan be used to bind multiple properties from an object collectively. - BindingGroupBuilder
v2_72Builder for binding group bindings. - This is a subclass of
glib::object::Objectcapable of storing any Rust type. It let’s you insert a Rust type anywhere aglib::object::Objectis needed. The inserted value can then be borrowed as a Rust type, by using the various provided methods. - A shared immutable byte slice (the equivalent of
Rc<[u8]>). - A
CollationKeyallows ordering strings using the linguistically correct rules for the current locale. - Representation of an
enumfor dynamically, at runtime, querying the values of the enum and using them. - Representation of a single enum value of an
EnumClass. - FileSetContentsFlags
v2_66 - A
FilenameCollationKeyallows ordering file names using the linguistically correct rules for the current locale. Compared toCollationKey, filename collation keys take into consideration dots and other characters commonly found in file names. - Builder for conveniently setting/unsetting flags and returning a
Value. - Representation of a
flagsfor dynamically, at runtime, querying the values of the enum and using them - Representation of a single flags value of a
FlagsClass. - Representaion of a borrowed
GString. - A type representing an owned, C-compatible, nul-terminated UTF-8 string.
- A mutable text buffer that grows automatically.
- An implementation of a
logcompatible logger which logs over glib logging facilities. - LogField
v2_50Structure representing a single field in a structured log entry. - MainContextFlags
v2_72 - Through the
ParamFlagsflag values, certain aspects of parameters can be configured. - A
Receiverthat can be attached to a main context to receive items from its correspondingSenderorSyncSender. - A
Senderthat can be used to send items to the corresponding main context receiver. - The signal flags are used to specify a signal’s behaviour.
- Represents a
Futurearound aglib::Source. The future will be resolved once the source has provided a value - Represents a
Streamaround aglib::Source. The stream will be provide all values that are provided by the source - A
SyncSenderthat can be used to send items to the corresponding main context receiver. - The
ThreadPoolstruct represents a thread pool. It has three public read-only members, but the underlying struct is bigger, so you must not copy this struct. - A value representing an interval of time, in microseconds.
TimeZoneis an opaque structure whose members cannot be accessed directly.- Uri
v2_66TheUritype and related functions can be used to parse URIs into their components, and build valid URIs from individual components. - UriFlags
v2_66Flags that describe a URI. - UriHideFlags
v2_66Flags describing what parts of the URI to hide inUri::to_string_partial(). Note thatPASSWORDandAUTH_PARAMSwill only work if theUriwas parsed with the corresponding flags. - UriParamsFlags
v2_66Flags modifying the way parameters are handled byg_uri_parse_params()andGUriParamsIter. VariantDictis a mutable key/value store where the keys are always strings and the values areVariants.- Iterator over items in a variant.
- Iterator over items in a variant of type
as. - Describes
Varianttypes. - An iterator over the individual components of a tuple VariantTy.
- Describes
Varianttypes.
Enums
- Enumeration of the possible domain handling behaviours for a
GlibLogger. - Enumeration of the possible formatting behaviours for a
GlibLogger. - LogWriterOutput
v2_50 - Disambiguates a given time in two ways.
- The
UnicodeScriptenumeration identifies different writing systems. The values correspond to the names as defined in the Unicode standard. The enumeration has been added in GLib 2.14, and is interchangeable withPangoScript. - UriError
v2_66Error codes returned byUrimethods. - These are logical ids for special directories which are defined depending on the platform used. You should use
user_special_dir()to retrieve the full path associated to the logical id. - The range of possible top-level types of
Variantinstances.
Constants
- This is the log domain used by the
clone!macro. If you want to use a custom logger (it prints to stdout by default), you can set your own logger using the correspondinglogfunctions.
Statics
Traits
Functions
- Obtain the character set for the current locale.
- Create a
Futurethat will resolve once the child process with the given pid exits - Create a
Futurethat will resolve once the child process with the given pid exits - console_charset
v2_62 - Create a
Streamthat will provide a value every given number of milliseconds. - Create a
Streamthat will provide a value every given number of seconds. - Create a
Streamthat will provide a value every given number of seconds. - Create a
Streamthat will provide a value every given number of milliseconds. - To set back the default print handler, use the
log_unset_default_handlerfunction. - log_set_writer_func
v2_50 - log_structured_array
v2_50 - To set the default print handler, use the
log_set_default_handlerfunction. - log_variant
v2_50 - log_writer_default
v2_50 - Sets whether GLib log functions output to stderr or stdout.
- log_writer_is_journaldUnix and
v2_50 - log_writer_journald
v2_50 - log_writer_supports_colorUnix and
v2_50 - os_info
v2_64 - Same as
get_prgname(). - Provides a glib log handler which routes all logging messages to the
log crate. - To set back the default print handler, use the
unset_print_handlerfunction. - To set back the default print handler, use the
unset_printerr_handlerfunction. - Same as
set_prgname(). - Parses a command line into an argument vector, in much the same way the shell would, but without many of the expansions the shell would perform (variable expansion, globs, operators, filename expansion, etc. are not supported).
- Quotes a string so that the shell (/bin/sh) will interpret the quoted string to mean
unquoted_string. - Unquotes a string as the shell (/bin/sh) would.
- Gets the smallest prime number from a built-in array of primes which is larger than
num. This is used within GLib to calculate the optimum size of aGHashTable. - Executes a child program asynchronously.
- spawn_async_with_fds
v2_58and non-Windows - spawn_async_with_pipesNon-Windows
- Create a
Futurethat will resolve after the given number of milliseconds. - Create a
Futurethat will resolve after the given number of seconds. - Create a
Futurethat will resolve after the given number of seconds. - Create a
Futurethat will resolve after the given number of milliseconds. - Create a
Futurethat will resolve once the given UNIX signal is raised - Create a
Futurethat will resolve once the given UNIX signal is raised - Create a
Streamthat will provide a value whenever the given UNIX signal is raised - Create a
Streamthat will provide a value whenever the given UNIX signal is raised - To set the default print handler, use the
set_print_handlerfunction. - To set the default print handler, use the
set_printerr_handlerfunction. - user_state_dir
v2_72 - uuid_string_is_valid
v2_52 - uuid_string_random
v2_52
Type Definitions
Attribute Macros
- Attribute macro for defining flags using the
bitflagscrate. This macro will also define aGFlags::type_function and theglib::Valuetraits. - Macro for boilerplate of
ObjectInterfaceimplementations. - Macro for boilerplate of
ObjectSubclassimplementations.
Derive Macros
- Macro for deriving implementations of
glib::clone::Downgradeandglib::clone::Upgradetraits and a weak type. - Derive macro for register a rust enum in the glib type system and derive the the [
glib::Value] traits. - Derive macro for defining a GLib error domain and its associated
ErrorDomaintrait. - Derive macro for serializing/deserializing custom structs as
glib::Variants.