#[non_exhaustive]pub struct UpdateWorkteamOutputBuilder { /* private fields */ }
Expand description
A builder for UpdateWorkteamOutput
.
Implementations§
source§impl UpdateWorkteamOutputBuilder
impl UpdateWorkteamOutputBuilder
sourcepub fn workteam(self, input: Workteam) -> Self
pub fn workteam(self, input: Workteam) -> Self
A Workteam
object that describes the updated work team.
sourcepub fn set_workteam(self, input: Option<Workteam>) -> Self
pub fn set_workteam(self, input: Option<Workteam>) -> Self
A Workteam
object that describes the updated work team.
sourcepub fn get_workteam(&self) -> &Option<Workteam>
pub fn get_workteam(&self) -> &Option<Workteam>
A Workteam
object that describes the updated work team.
sourcepub fn build(self) -> UpdateWorkteamOutput
pub fn build(self) -> UpdateWorkteamOutput
Consumes the builder and constructs a UpdateWorkteamOutput
.
Trait Implementations§
source§impl Clone for UpdateWorkteamOutputBuilder
impl Clone for UpdateWorkteamOutputBuilder
source§fn clone(&self) -> UpdateWorkteamOutputBuilder
fn clone(&self) -> UpdateWorkteamOutputBuilder
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 Debug for UpdateWorkteamOutputBuilder
impl Debug for UpdateWorkteamOutputBuilder
source§impl Default for UpdateWorkteamOutputBuilder
impl Default for UpdateWorkteamOutputBuilder
source§fn default() -> UpdateWorkteamOutputBuilder
fn default() -> UpdateWorkteamOutputBuilder
Returns the “default value” for a type. Read more
impl StructuralPartialEq for UpdateWorkteamOutputBuilder
Auto Trait Implementations§
impl Freeze for UpdateWorkteamOutputBuilder
impl RefUnwindSafe for UpdateWorkteamOutputBuilder
impl Send for UpdateWorkteamOutputBuilder
impl Sync for UpdateWorkteamOutputBuilder
impl Unpin for UpdateWorkteamOutputBuilder
impl UnwindSafe for UpdateWorkteamOutputBuilder
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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.