Struct android_manifest::PermissionGroup [−][src]
pub struct PermissionGroup {
pub description: Option<Resource<StringResource>>,
pub icon: Option<Resource<DrawableResource>>,
pub label: Option<StringResourceOrString>,
pub name: Option<String>,
}Expand description
Declares a name for a logical grouping of related permissions.
Individual permission join the group through the permissionGroup attribute of the
<permission> element. Members of a group are presented together in
the user interface.
Note that this element does not declare a permission itself, only a category in which
permissions can be placed. See the <permission> element for element for
information on declaring permissions and assigning them to groups.
XML Syntax
<permission-group android:description="string resource"
android:icon="drawable resource"
android:label="string resource"
android:name="string" />
Contained in
Introduced in
API Level 1
Fields
description: Option<Resource<StringResource>>User-readable text that describes the group. The text should be longer and more explanatory than the label. This attribute must be set as a reference to a string resource. Unlike the label attribute, it cannot be a raw string.
icon: Option<Resource<DrawableResource>>An icon representing the permission. This attribute must be set as a reference to a drawable resource containing the image definition.
label: Option<StringResourceOrString>A user-readable name for the group. As a convenience, the label can be directly set as a raw string while you’re developing the application. However, when the application is ready to be published, it should be set as a reference to a string resource, so that it can be localized like other strings in the user interface.
name: Option<String>The name of the group. This is the name that can be assigned to a
<permission> element’s <permissionGroup> attribute.
Trait Implementations
Returns the “default value” for a type. Read more
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]Deserialize this value from the given Serde deserializer. Read more
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
fn serialize_attributes(
&self,
source_attributes: Vec<OwnedAttribute>,
source_namespace: Namespace
) -> Result<(Vec<OwnedAttribute>, Namespace), String>[src]Auto Trait Implementations
impl RefUnwindSafe for PermissionGroupimpl Send for PermissionGroupimpl Sync for PermissionGroupimpl Unpin for PermissionGroupimpl UnwindSafe for PermissionGroupBlanket Implementations
Mutably borrows from an owned value. Read more