Struct rusoto_workspaces::DescribeWorkspacesResult[][src]

pub struct DescribeWorkspacesResult {
    pub next_token: Option<String>,
    pub workspaces: Option<Vec<Workspace>>,
}

Fields

The token to use to retrieve the next set of results, or null if there are no more results available. This token is valid for one day and must be used within that time frame.

Information about the WorkSpaces.

Because CreateWorkspaces is an asynchronous operation, some of the returned information could be incomplete.

Trait Implementations

impl Default for DescribeWorkspacesResult
[src]

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

impl Debug for DescribeWorkspacesResult
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeWorkspacesResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DescribeWorkspacesResult
[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