pub struct AppDetails {
Show 25 fields pub developer_name: Option<String>, pub major_version_number: Option<i32>, pub version_code: Option<i32>, pub version_string: Option<String>, pub title: Option<String>, pub app_category: Vec<String>, pub content_rating: Option<i32>, pub installation_size: Option<i64>, pub permission: Vec<String>, pub developer_email: Option<String>, pub developer_website: Option<String>, pub num_downloads: Option<String>, pub package_name: Option<String>, pub recent_changes_html: Option<String>, pub upload_date: Option<String>, pub file: Vec<FileMetadata>, pub app_type: Option<String>, pub unstable: Option<bool>, pub has_instant_link: Option<bool>, pub contains_ads: Option<String>, pub dependencies: Option<Dependencies>, pub testing_program_info: Option<TestingProgramInfo>, pub early_access_info: Option<EarlyAccessInfo>, pub instant_link: Option<String>, pub developer_address: Option<String>,
}

Fields

developer_name: Option<String>major_version_number: Option<i32>version_code: Option<i32>version_string: Option<String>title: Option<String>app_category: Vec<String>content_rating: Option<i32>installation_size: Option<i64>permission: Vec<String>developer_email: Option<String>developer_website: Option<String>num_downloads: Option<String>package_name: Option<String>recent_changes_html: Option<String>upload_date: Option<String>file: Vec<FileMetadata>app_type: Option<String>unstable: Option<bool>has_instant_link: Option<bool>contains_ads: Option<String>dependencies: Option<Dependencies>testing_program_info: Option<TestingProgramInfo>early_access_info: Option<EarlyAccessInfo>instant_link: Option<String>developer_address: Option<String>

Implementations

Returns the value of developer_name, or the default value if developer_name is unset.

Returns the value of major_version_number, or the default value if major_version_number is unset.

Returns the value of version_code, or the default value if version_code is unset.

Returns the value of version_string, or the default value if version_string is unset.

Returns the value of title, or the default value if title is unset.

Returns the value of content_rating, or the default value if content_rating is unset.

Returns the value of installation_size, or the default value if installation_size is unset.

Returns the value of developer_email, or the default value if developer_email is unset.

Returns the value of developer_website, or the default value if developer_website is unset.

Returns the value of num_downloads, or the default value if num_downloads is unset.

Returns the value of package_name, or the default value if package_name is unset.

Returns the value of recent_changes_html, or the default value if recent_changes_html is unset.

Returns the value of upload_date, or the default value if upload_date is unset.

Returns the value of app_type, or the default value if app_type is unset.

Returns the value of unstable, or the default value if unstable is unset.

Returns the value of has_instant_link, or the default value if has_instant_link is unset.

Returns the value of contains_ads, or the default value if contains_ads is unset.

Returns the value of instant_link, or the default value if instant_link is unset.

Returns the value of developer_address, or the default value if developer_address is unset.

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

Returns the encoded length of the message without a length delimiter.

Clears the message, resetting all fields to their default.

Encodes the message to a buffer. Read more

Encodes the message to a newly allocated buffer.

Encodes the message with a length-delimiter to a buffer. Read more

Encodes the message with a length-delimiter to a newly allocated buffer.

Decodes an instance of the message from a buffer. Read more

Decodes a length-delimited instance of the message from the buffer.

Decodes an instance of the message from a buffer, and merges it into self. Read more

Decodes a length-delimited instance of the message from buffer, and merges it into self. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

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

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.