[go: up one dir, main page]

glib 0.0.7

Rust bindings for the GLib library
// Copyright 2013-2015, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>

use gio_ffi;
use object::Upcast;

glib_wrapper! {
    pub struct AppInfo(Object<gio_ffi::GAppInfo>);

    match fn {
        get_type => || gio_ffi::g_app_info_get_type(),
    }
}

pub trait AppInfoExt {
}

impl<O: Upcast<AppInfo>> AppInfoExt for O {
}