Struct google_testing1::IntentFilter[][src]

pub struct IntentFilter {
    pub mime_type: Option<String>,
    pub action_names: Option<Vec<String>>,
    pub category_names: Option<Vec<String>>,
}

The <intent-filter> section of an tag. https://developer.android.com/guide/topics/manifest/intent-filter-element.html

This type is not used in any activity, and only used as part of another schema.

Fields

The android:mimeType value of the tag

The android:name value of the tag

The android:name value of the tag

Trait Implementations

impl Default for IntentFilter
[src]

Returns the "default value" for a type. Read more

impl Clone for IntentFilter
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for IntentFilter
[src]

Formats the value using the given formatter. Read more

impl Part for IntentFilter
[src]

Auto Trait Implementations