gio 0.22.2

Rust bindings for the Gio library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// Take a look at the license at the top of the repository in the LICENSE file.

use crate::ffi;

glib::wrapper! {
    #[doc(alias = "GIOModule")]
    pub struct IOModule(Object<ffi::GIOModule, ffi::GIOModuleClass>) @extends glib::TypeModule, @implements glib::TypePlugin;

    match fn {
        type_ => || ffi::g_io_module_get_type(),
    }
}