Struct rusoto_glue::GetDatabasesResponse[][src]

pub struct GetDatabasesResponse {
    pub database_list: Vec<Database>,
    pub next_token: Option<String>,
}

Fields

A list of Database objects from the specified catalog.

A continuation token for paginating the returned list of tokens, returned if the current segment of the list is not the last.

Trait Implementations

impl Default for GetDatabasesResponse
[src]

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

impl Debug for GetDatabasesResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for GetDatabasesResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for GetDatabasesResponse
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations