[go: up one dir, main page]

gtk 0.2.0

Rust bindings for the GTK+ 3 library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use glib::translate::ToGlib;

impl Into<i32> for ::IconSize {
    fn into(self) -> i32 {
        skip_assert_initialized!();
        self.to_glib() as i32
    }
}

impl Into<i32> for ::ResponseType {
    fn into(self) -> i32 {
        skip_assert_initialized!();
        self.to_glib() as i32
    }
}