Struct rusoto_lambda::ListFunctionsResponse [] [src]

pub struct ListFunctionsResponse {
    pub functions: Option<Vec<FunctionConfiguration>>,
    pub next_marker: Option<String>,
}

Contains a list of AWS Lambda function configurations (see FunctionConfiguration.

Fields

A list of Lambda functions.

A string, present if there are more functions.

Trait Implementations

impl Default for ListFunctionsResponse
[src]

[src]

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

impl Debug for ListFunctionsResponse
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ListFunctionsResponse
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations