Struct android_manifest::PermissionTree[][src]

pub struct PermissionTree {
    pub icon: Option<Resource<DrawableResource>>,
    pub label: Option<StringResourceOrString>,
    pub name: Option<String>,
}
Expand description

Declares the base name for a tree of permissions.

The application takes ownership of all names within the tree. It can dynamically add new permissions to the tree by calling PackageManager.addPermission() Names within the tree are separated by periods ('.'). For example, if the base name is com.example.project.taxes.

Permissions like the following might be added:

  • com.example.project.taxes.CALCULATE
  • com.example.project.taxes.deductions.MAKE_SOME_UP
  • com.example.project.taxes.deductions.EXAGGERATE

Note that this element does not declare a permission itself, only a namespace in which further permissions can be placed. See the <permission> element for information on declaring permissions.

XML Syntax

<permission-tree android:icon="drawable resource"
                 android:label="string resource" ]
                 android:name="string" />

Contained in

Introduced in

API Level 1

Fields

icon: Option<Resource<DrawableResource>>

An icon representing all the permissions in the tree. 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 for quick and dirty programming. 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 that’s at the base of the permission tree. It serves as a prefix to all permission names in the tree. Java-style scoping should be used to ensure that the name is unique. The name must have more than two period-separated segments in its path — for example, com.example.base is OK, but com.example is not.

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.