Struct google_pagespeedonline4::PagespeedapiRunpagespeedCall[][src]

pub struct PagespeedapiRunpagespeedCall<'a, C, A> where
    C: 'a,
    A: 'a, 
{ /* fields omitted */ }

Runs PageSpeed analysis on the page at the specified URL, and returns PageSpeed scores, a list of suggestions to make that page faster, and other information.

A builder for the runpagespeed method supported by a pagespeedapi resource. It is not used directly, but through a PagespeedapiMethods instance.

Example

Instantiate a resource method builder

 
// You can configure optional parameters by calling the respective setters at will, and
// execute the final call using `doit()`.
// Values shown here are possibly random and not representative !
let result = hub.pagespeedapi().runpagespeed("url")
             .utm_source("et")
             .utm_campaign("duo")
             .strategy("aliquyam")
             .snapshots(true)
             .screenshot(false)
             .add_rule("eos")
             .locale("erat")
             .filter_third_party_resources(false)
             .doit();

Methods

impl<'a, C, A> PagespeedapiRunpagespeedCall<'a, C, A> where
    C: BorrowMut<Client>,
    A: GetToken
[src]

Perform the operation you have build so far.

The URL to fetch and analyze

Sets the url query property to the given value.

Even though the property as already been set when instantiating this call, we provide this method for API completeness.

Campaign source for analytics.

Sets the utm_source query property to the given value.

Campaign name for analytics.

Sets the utm_campaign query property to the given value.

The analysis strategy (desktop or mobile) to use, and desktop is the default

Sets the strategy query property to the given value.

Indicates if binary data containing snapshot images should be included

Sets the snapshots query property to the given value.

Indicates if binary data containing a screenshot should be included

Sets the screenshot query property to the given value.

A PageSpeed rule to run; if none are given, all rules are run

Append the given value to the rule query property. Each appended value will retain its original ordering and be '/'-separated in the URL's parameters.

The locale used to localize formatted results

Sets the locale query property to the given value.

Indicates if third party resources should be filtered out before PageSpeed analysis.

Sets the filter_third_party_resources query property to the given value.

The delegate implementation is consulted whenever there is an intermediate result, or if something goes wrong while executing the actual API request.

It should be used to handle progress information, and to implement a certain level of resilience.

Sets the delegate property to the given value.

Set any additional parameter of the query string used in the request. It should be used to set parameters which are not yet available through their own setters.

Please note that this method must not be used to set any of the known paramters which have their own setter method. If done anyway, the request will fail.

Additional Parameters

  • quotaUser (query-string) - An opaque string that represents a user for quota purposes. Must not exceed 40 characters.
  • oauth_token (query-string) - OAuth 2.0 token for the current user.
  • key (query-string) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
  • prettyPrint (query-boolean) - Returns response with indentations and line breaks.
  • userIp (query-string) - Deprecated. Please use quotaUser instead.
  • fields (query-string) - Selector specifying which fields to include in a partial response.
  • alt (query-string) - Data format for the response.

Trait Implementations

impl<'a, C, A> CallBuilder for PagespeedapiRunpagespeedCall<'a, C, A>
[src]

Auto Trait Implementations

impl<'a, C, A> !Send for PagespeedapiRunpagespeedCall<'a, C, A>

impl<'a, C, A> !Sync for PagespeedapiRunpagespeedCall<'a, C, A>