1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files)
// DO NOT EDIT

glib::wrapper! {
    /// A data structure for holding a rectangle. Those coordinates are
    /// relative to the component top-level parent.
    #[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
    pub struct Rectangle(Boxed<ffi::AtkRectangle>);

    match fn {
        copy => |ptr| glib::gobject_ffi::g_boxed_copy(ffi::atk_rectangle_get_type(), ptr as *mut _) as *mut ffi::AtkRectangle,
        free => |ptr| glib::gobject_ffi::g_boxed_free(ffi::atk_rectangle_get_type(), ptr as *mut _),
        type_ => || ffi::atk_rectangle_get_type(),
    }
}