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 a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

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 !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.