rute 0.0.6

UI library implemented on top of Qt
Documentation
// This file is auto-generated by rute_gen. DO NOT EDIT.
use rute_ffi_base::*;

#[allow(unused_imports)]
use std::os::raw::c_void;
#[repr(C)]
#[derive(Copy, Clone)]
pub struct RUMarginsFuncs {
    pub destroy: extern "C" fn(self_c: *const RUBase),
    pub is_null: extern "C" fn(self_c: *const RUBase) -> bool,
    pub left: extern "C" fn(self_c: *const RUBase) -> i32,
    pub top: extern "C" fn(self_c: *const RUBase) -> i32,
    pub right: extern "C" fn(self_c: *const RUBase) -> i32,
    pub bottom: extern "C" fn(self_c: *const RUBase) -> i32,
    pub set_left: extern "C" fn(self_c: *const RUBase, left: i32),
    pub set_top: extern "C" fn(self_c: *const RUBase, top: i32),
    pub set_right: extern "C" fn(self_c: *const RUBase, right: i32),
    pub set_bottom: extern "C" fn(self_c: *const RUBase, bottom: i32),
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct RUMarginsAllFuncs {
    pub margins_funcs: *const RUMarginsFuncs,
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct RUMargins {
    pub qt_data: *const RUBase,
    pub host_data: *const RUBase,
    pub all_funcs: *const RUMarginsAllFuncs,
}