gio 0.22.2

Rust bindings for the Gio library
Documentation
// Take a look at the license at the top of the repository in the LICENSE file.

mod action_group;
mod action_map;
mod application;
mod async_initable;
mod dbus_interface;
mod dbus_proxy;
mod file;
mod file_enumerator;
mod file_monitor;
mod initable;
mod input_stream;
mod io_stream;
mod list_model;
mod output_stream;
mod seekable;
mod socket_control_message;
mod vfs;

pub use self::application::ArgumentList;

pub mod prelude {
    #[doc(hidden)]
    pub use glib::subclass::prelude::*;

    pub use super::{
        action_group::{ActionGroupImpl, ActionGroupImplExt},
        action_map::{ActionMapImpl, ActionMapImplExt},
        application::{ApplicationImpl, ApplicationImplExt},
        async_initable::{AsyncInitableImpl, AsyncInitableImplExt},
        dbus_interface::{DBusInterfaceImpl, DBusInterfaceImplExt},
        dbus_proxy::{DBusProxyImpl, DBusProxyImplExt},
        file::{FileImpl, FileImplExt},
        file_enumerator::{FileEnumeratorImpl, FileEnumeratorImplExt},
        file_monitor::{FileMonitorImpl, FileMonitorImplExt},
        initable::{InitableImpl, InitableImplExt},
        input_stream::{InputStreamImpl, InputStreamImplExt},
        io_stream::{IOStreamImpl, IOStreamImplExt},
        list_model::{ListModelImpl, ListModelImplExt},
        output_stream::{OutputStreamImpl, OutputStreamImplExt},
        seekable::{SeekableImpl, SeekableImplExt},
        socket_control_message::{SocketControlMessageImpl, SocketControlMessageImplExt},
        vfs::{VfsImpl, VfsImplExt},
    };
}