Struct google_testing1::StartActivityIntent[][src]

pub struct StartActivityIntent {
    pub action: Option<String>,
    pub uri: Option<String>,
    pub categories: Option<Vec<String>>,
}

A starting intent specified by an action, uri, and categories.

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

Fields

Action name. Required for START_ACTIVITY.

URI for the action. Optional.

Intent categories to set on the intent. Optional.

Trait Implementations

impl Default for StartActivityIntent
[src]

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

impl Clone for StartActivityIntent
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for StartActivityIntent
[src]

Formats the value using the given formatter. Read more

impl Part for StartActivityIntent
[src]

Auto Trait Implementations