Struct google_cloudfunctions1::FailurePolicy[][src]

pub struct FailurePolicy {
    pub retry: Option<Retry>,
}

Describes the policy in case of function's execution failure. If empty, then defaults to ignoring failures (i.e. not retrying them).

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

Fields

If specified, then the function will be retried in case of a failure.

Trait Implementations

impl Default for FailurePolicy
[src]

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

impl Clone for FailurePolicy
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for FailurePolicy
[src]

Formats the value using the given formatter. Read more

impl Part for FailurePolicy
[src]

Auto Trait Implementations