pub struct DescribeRootFoldersRequest {
pub authentication_token: String,
pub limit: Option<i64>,
pub marker: Option<String>,
}Fields§
§authentication_token: StringAmazon WorkDocs authentication token.
limit: Option<i64>The maximum number of items to return.
marker: Option<String>The marker for the next set of results. (You received this marker from a previous call.)
Trait Implementations§
Source§impl Clone for DescribeRootFoldersRequest
impl Clone for DescribeRootFoldersRequest
Source§fn clone(&self) -> DescribeRootFoldersRequest
fn clone(&self) -> DescribeRootFoldersRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DescribeRootFoldersRequest
impl Debug for DescribeRootFoldersRequest
Source§impl Default for DescribeRootFoldersRequest
impl Default for DescribeRootFoldersRequest
Source§fn default() -> DescribeRootFoldersRequest
fn default() -> DescribeRootFoldersRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeRootFoldersRequest
impl PartialEq for DescribeRootFoldersRequest
Source§fn eq(&self, other: &DescribeRootFoldersRequest) -> bool
fn eq(&self, other: &DescribeRootFoldersRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeRootFoldersRequest
Auto Trait Implementations§
impl Freeze for DescribeRootFoldersRequest
impl RefUnwindSafe for DescribeRootFoldersRequest
impl Send for DescribeRootFoldersRequest
impl Sync for DescribeRootFoldersRequest
impl Unpin for DescribeRootFoldersRequest
impl UnsafeUnpin for DescribeRootFoldersRequest
impl UnwindSafe for DescribeRootFoldersRequest
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