4 releases

Uses old Rust 2015

0.2.0 Nov 4, 2015
0.1.2 Oct 23, 2015
0.1.1 Sep 19, 2015
0.1.0 Sep 18, 2015

#13 in #gobject

Download history 55/week @ 2024-04-18 52/week @ 2024-04-25 29/week @ 2024-05-02 58/week @ 2024-05-09 56/week @ 2024-05-16 48/week @ 2024-05-23 48/week @ 2024-05-30 48/week @ 2024-06-06 61/week @ 2024-06-13 55/week @ 2024-06-20 34/week @ 2024-06-27 10/week @ 2024-07-04 23/week @ 2024-07-11 44/week @ 2024-07-18 56/week @ 2024-07-25 39/week @ 2024-08-01

166 downloads per month
Used in 4 crates

LGPL-2.1+

12KB

This Rust crate provides definitions for fundamental types and constants used by APIs available through GObject introspection.


lib.rs:

Fundamental types for GLib and GObject introspection.

This crate provides definitions for types that are intrinsic in GObject introspection, unlike all other types that have a definition in a GIR file. All crates generated from GObject introspection data should use these shared definitions.

Some types are omitted because a suitable equivalent is readily available in Rust:

  1. Fixed-size integer types. These have straightforward built-in counterparts in Rust.
  2. Strings can have GI types utf8 or filename. In the FFI all string values are represented as raw pointers to gchar. A safe representation of C strings in idiomatic Rust bindings needs some wrapper types which are not defined here.

Dependencies

~43KB