gio/auto/simple_permission.rs
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 34 35 36 37 38 39 40 41 42 43
// 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
use crate::{ffi, Permission};
use glib::{prelude::*, translate::*};
glib::wrapper! {
/// `GSimplePermission` is a trivial implementation of [`Permission`][crate::Permission]
/// that represents a permission that is either always or never allowed. The
/// value is given at construction and doesn’t change.
///
/// Calling [`PermissionExt::acquire()`][crate::prelude::PermissionExt::acquire()] or [`PermissionExt::release()`][crate::prelude::PermissionExt::release()]
/// on a `GSimplePermission` will result in errors.
///
/// # Implements
///
/// [`PermissionExt`][trait@crate::prelude::PermissionExt], [`trait@glib::ObjectExt`]
#[doc(alias = "GSimplePermission")]
pub struct SimplePermission(Object<ffi::GSimplePermission>) @extends Permission;
match fn {
type_ => || ffi::g_simple_permission_get_type(),
}
}
impl SimplePermission {
/// Creates a new #GPermission instance that represents an action that is
/// either always or never allowed.
/// ## `allowed`
/// [`true`] if the action is allowed
///
/// # Returns
///
/// the #GSimplePermission, as a #GPermission
#[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()
}
}
}