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).
- locations functions call projects (response)
Fields
execution_id: Option<String>
Execution id of function invocation.
result: Option<String>
Result populated for successful execution of synchronous function. Will not be populated if function does not return a result through context.
error: Option<String>
Either system or user-function generated error. Set if execution was not successful.
Trait Implementations
impl Default for CallFunctionResponse[src]
impl Default for CallFunctionResponsefn default() -> CallFunctionResponse[src]
fn default() -> CallFunctionResponseReturns the "default value" for a type. Read more
impl Clone for CallFunctionResponse[src]
impl Clone for CallFunctionResponsefn clone(&self) -> CallFunctionResponse[src]
fn clone(&self) -> CallFunctionResponseReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Debug for CallFunctionResponse[src]
impl Debug for CallFunctionResponsefn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl ResponseResult for CallFunctionResponse[src]
impl ResponseResult for CallFunctionResponseAuto Trait Implementations
impl Send for CallFunctionResponse
impl Send for CallFunctionResponseimpl Sync for CallFunctionResponse
impl Sync for CallFunctionResponse