Struct aws_sdk_workdocs::operation::describe_root_folders::builders::DescribeRootFoldersOutputBuilder
source · #[non_exhaustive]pub struct DescribeRootFoldersOutputBuilder { /* private fields */ }
Expand description
A builder for DescribeRootFoldersOutput
.
Implementations§
source§impl DescribeRootFoldersOutputBuilder
impl DescribeRootFoldersOutputBuilder
sourcepub fn folders(self, input: FolderMetadata) -> Self
pub fn folders(self, input: FolderMetadata) -> Self
Appends an item to folders
.
To override the contents of this collection use set_folders
.
The user's special folders.
sourcepub fn set_folders(self, input: Option<Vec<FolderMetadata>>) -> Self
pub fn set_folders(self, input: Option<Vec<FolderMetadata>>) -> Self
The user's special folders.
sourcepub fn get_folders(&self) -> &Option<Vec<FolderMetadata>>
pub fn get_folders(&self) -> &Option<Vec<FolderMetadata>>
The user's special folders.
sourcepub fn set_marker(self, input: Option<String>) -> Self
pub fn set_marker(self, input: Option<String>) -> Self
The marker for the next set of results.
sourcepub fn get_marker(&self) -> &Option<String>
pub fn get_marker(&self) -> &Option<String>
The marker for the next set of results.
sourcepub fn build(self) -> DescribeRootFoldersOutput
pub fn build(self) -> DescribeRootFoldersOutput
Consumes the builder and constructs a DescribeRootFoldersOutput
.
Trait Implementations§
source§impl Clone for DescribeRootFoldersOutputBuilder
impl Clone for DescribeRootFoldersOutputBuilder
source§fn clone(&self) -> DescribeRootFoldersOutputBuilder
fn clone(&self) -> DescribeRootFoldersOutputBuilder
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 DescribeRootFoldersOutputBuilder
impl Default for DescribeRootFoldersOutputBuilder
source§fn default() -> DescribeRootFoldersOutputBuilder
fn default() -> DescribeRootFoldersOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for DescribeRootFoldersOutputBuilder
impl PartialEq for DescribeRootFoldersOutputBuilder
source§fn eq(&self, other: &DescribeRootFoldersOutputBuilder) -> bool
fn eq(&self, other: &DescribeRootFoldersOutputBuilder) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeRootFoldersOutputBuilder
Auto Trait Implementations§
impl Freeze for DescribeRootFoldersOutputBuilder
impl RefUnwindSafe for DescribeRootFoldersOutputBuilder
impl Send for DescribeRootFoldersOutputBuilder
impl Sync for DescribeRootFoldersOutputBuilder
impl Unpin for DescribeRootFoldersOutputBuilder
impl UnwindSafe for DescribeRootFoldersOutputBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.