Struct google_cloudtasks2_beta2::api::AppEngineHttpTarget[][src]

pub struct AppEngineHttpTarget {
    pub app_engine_routing_override: Option<AppEngineRouting>,
}

App Engine HTTP target. The task will be delivered to the App Engine application hostname specified by its AppEngineHttpTarget and AppEngineHttpRequest. The documentation for AppEngineHttpRequest explains how the task's host URL is constructed. Using AppEngineHttpTarget requires appengine.applications.get Google IAM permission for the project and the following scope: https://www.googleapis.com/auth/cloud-platform

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

Fields

app_engine_routing_override: Option<AppEngineRouting>

Overrides for the task-level app_engine_routing. If set, app_engine_routing_override is used for all tasks in the queue, no matter what the setting is for the task-level app_engine_routing.

Trait Implementations

impl Clone for AppEngineHttpTarget[src]

impl Debug for AppEngineHttpTarget[src]

impl Default for AppEngineHttpTarget[src]

impl<'de> Deserialize<'de> for AppEngineHttpTarget[src]

impl Part for AppEngineHttpTarget[src]

impl Serialize for AppEngineHttpTarget[src]

Auto Trait Implementations

impl RefUnwindSafe for AppEngineHttpTarget[src]

impl Send for AppEngineHttpTarget[src]

impl Sync for AppEngineHttpTarget[src]

impl Unpin for AppEngineHttpTarget[src]

impl UnwindSafe for AppEngineHttpTarget[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.