Struct google_searchconsole1::RunMobileFriendlyTestResponse[][src]

pub struct RunMobileFriendlyTestResponse {
    pub test_status: Option<TestStatus>,
    pub resource_issues: Option<Vec<ResourceIssue>>,
    pub mobile_friendliness: Option<String>,
    pub screenshot: Option<Image>,
    pub mobile_friendly_issues: Option<Vec<MobileFriendlyIssue>>,
}

Mobile-friendly test response, including mobile-friendly issues and resource issues.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

Final state of the test, can be either complete or an error.

Information about embedded resources issues.

Test verdict, whether the page is mobile friendly or not.

Screenshot of the requested URL.

List of mobile-usability issues.

Trait Implementations

impl Default for RunMobileFriendlyTestResponse
[src]

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

impl Clone for RunMobileFriendlyTestResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for RunMobileFriendlyTestResponse
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for RunMobileFriendlyTestResponse
[src]

Auto Trait Implementations