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 |
#7 in #gobject
172 downloads per month
Used in 4 crates
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:
- Fixed-size integer types. These have straightforward built-in counterparts in Rust.
- Strings can have GI types
utf8orfilename. In the FFI all string values are represented as raw pointers togchar. A safe representation of C strings in idiomatic Rust bindings needs some wrapper types which are not defined here.
Dependencies
~42KB