1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
use crate::Permission;
use glib::object::Cast;
use glib::translate::*;
use std::fmt;
glib::wrapper! {
#[doc(alias = "GSimplePermission")]
pub struct SimplePermission(Object<ffi::GSimplePermission>) @extends Permission;
match fn {
type_ => || ffi::g_simple_permission_get_type(),
}
}
impl SimplePermission {
#[doc(alias = "g_simple_permission_new")]
pub fn new(allowed: bool) -> SimplePermission {
unsafe {
Permission::from_glib_full(ffi::g_simple_permission_new(allowed.into_glib()))
.unsafe_cast()
}
}
}
impl fmt::Display for SimplePermission {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.write_str("SimplePermission")
}
}