qt_core 0.3.0

Bindings for QtCore C++ library
Documentation
1
2
3
4
5
6
7
#[test]
fn qrect() {
    unsafe {
        let r = qt_core::QRect::from_4_int(1, 2, 3, 4);
        assert!(r.width() == 3);
    }
}