Struct rusoto_workdocs::DescribeFolderContentsResponse [] [src]

pub struct DescribeFolderContentsResponse {
    pub documents: Option<Vec<DocumentMetadata>>,
    pub folders: Option<Vec<FolderMetadata>>,
    pub marker: Option<String>,
}

Fields

The documents in the specified folder.

The subfolders in the specified folder.

The marker to use when requesting the next set of results. If there are no additional results, the string is empty.

Trait Implementations

impl Default for DescribeFolderContentsResponse
[src]

[src]

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

impl Debug for DescribeFolderContentsResponse
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeFolderContentsResponse
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations