#[non_exhaustive]pub struct ChangeProgressDetailsBuilder { /* private fields */ }
Expand description
A builder for ChangeProgressDetails
.
Implementations§
source§impl ChangeProgressDetailsBuilder
impl ChangeProgressDetailsBuilder
sourcepub fn change_id(self, input: impl Into<String>) -> Self
pub fn change_id(self, input: impl Into<String>) -> Self
The unique change identifier associated with a specific domain configuration change.
sourcepub fn set_change_id(self, input: Option<String>) -> Self
pub fn set_change_id(self, input: Option<String>) -> Self
The unique change identifier associated with a specific domain configuration change.
sourcepub fn get_change_id(&self) -> &Option<String>
pub fn get_change_id(&self) -> &Option<String>
The unique change identifier associated with a specific domain configuration change.
sourcepub fn message(self, input: impl Into<String>) -> Self
pub fn message(self, input: impl Into<String>) -> Self
Contains an optional message associated with the domain configuration change.
sourcepub fn set_message(self, input: Option<String>) -> Self
pub fn set_message(self, input: Option<String>) -> Self
Contains an optional message associated with the domain configuration change.
sourcepub fn get_message(&self) -> &Option<String>
pub fn get_message(&self) -> &Option<String>
Contains an optional message associated with the domain configuration change.
sourcepub fn build(self) -> ChangeProgressDetails
pub fn build(self) -> ChangeProgressDetails
Consumes the builder and constructs a ChangeProgressDetails
.
Trait Implementations§
source§impl Clone for ChangeProgressDetailsBuilder
impl Clone for ChangeProgressDetailsBuilder
source§fn clone(&self) -> ChangeProgressDetailsBuilder
fn clone(&self) -> ChangeProgressDetailsBuilder
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 ChangeProgressDetailsBuilder
impl Debug for ChangeProgressDetailsBuilder
source§impl Default for ChangeProgressDetailsBuilder
impl Default for ChangeProgressDetailsBuilder
source§fn default() -> ChangeProgressDetailsBuilder
fn default() -> ChangeProgressDetailsBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ChangeProgressDetailsBuilder
impl PartialEq for ChangeProgressDetailsBuilder
source§fn eq(&self, other: &ChangeProgressDetailsBuilder) -> bool
fn eq(&self, other: &ChangeProgressDetailsBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ChangeProgressDetailsBuilder
Auto Trait Implementations§
impl RefUnwindSafe for ChangeProgressDetailsBuilder
impl Send for ChangeProgressDetailsBuilder
impl Sync for ChangeProgressDetailsBuilder
impl Unpin for ChangeProgressDetailsBuilder
impl UnwindSafe for ChangeProgressDetailsBuilder
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> 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>
Creates a shared type from an unshared type.