Struct google_cloudfunctions1::CallFunctionResponse[][src]

pub struct CallFunctionResponse {
    pub execution_id: Option<String>,
    pub result: Option<String>,
    pub error: Option<String>,
}

Response of CallFunction method.

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

Execution id of function invocation.

Result populated for successful execution of synchronous function. Will not be populated if function does not return a result through context.

Either system or user-function generated error. Set if execution was not successful.

Trait Implementations

impl Default for CallFunctionResponse
[src]

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

impl Clone for CallFunctionResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for CallFunctionResponse
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for CallFunctionResponse
[src]

Auto Trait Implementations