pub trait PermissionRequestExt: 'static {
    fn allow(&self);
    fn deny(&self);
}
Expand description

Required Methods

Allow the action which triggered this request.

Deny the action which triggered this request.

Implementors