pub struct DescribeFolderContentsRequest {
pub authentication_token: Option<String>,
pub folder_id: String,
pub include: Option<String>,
pub limit: Option<i64>,
pub marker: Option<String>,
pub order: Option<String>,
pub sort: Option<String>,
pub type_: Option<String>,
}
Fields§
§authentication_token: Option<String>
Amazon WorkDocs authentication token. Not required when using AWS administrator credentials to access the API.
folder_id: String
The ID of the folder.
include: Option<String>
The contents to include. Specify "INITIALIZED" to include initialized documents.
limit: Option<i64>
The maximum number of items to return with this call.
marker: Option<String>
The marker for the next set of results. This marker was received from a previous call.
order: Option<String>
The order for the contents of the folder.
sort: Option<String>
The sorting criteria.
type_: Option<String>
The type of items.
Trait Implementations§
Source§impl Clone for DescribeFolderContentsRequest
impl Clone for DescribeFolderContentsRequest
Source§fn clone(&self) -> DescribeFolderContentsRequest
fn clone(&self) -> DescribeFolderContentsRequest
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for DescribeFolderContentsRequest
impl Default for DescribeFolderContentsRequest
Source§fn default() -> DescribeFolderContentsRequest
fn default() -> DescribeFolderContentsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeFolderContentsRequest
impl PartialEq for DescribeFolderContentsRequest
Source§fn eq(&self, other: &DescribeFolderContentsRequest) -> bool
fn eq(&self, other: &DescribeFolderContentsRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeFolderContentsRequest
Auto Trait Implementations§
impl Freeze for DescribeFolderContentsRequest
impl RefUnwindSafe for DescribeFolderContentsRequest
impl Send for DescribeFolderContentsRequest
impl Sync for DescribeFolderContentsRequest
impl Unpin for DescribeFolderContentsRequest
impl UnwindSafe for DescribeFolderContentsRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more