#[non_exhaustive]pub struct ClusterStateChangeReasonBuilder { /* private fields */ }
Expand description
A builder for ClusterStateChangeReason
.
Implementations§
source§impl ClusterStateChangeReasonBuilder
impl ClusterStateChangeReasonBuilder
sourcepub fn code(self, input: ClusterStateChangeReasonCode) -> Self
pub fn code(self, input: ClusterStateChangeReasonCode) -> Self
The programmatic code for the state change reason.
sourcepub fn set_code(self, input: Option<ClusterStateChangeReasonCode>) -> Self
pub fn set_code(self, input: Option<ClusterStateChangeReasonCode>) -> Self
The programmatic code for the state change reason.
sourcepub fn get_code(&self) -> &Option<ClusterStateChangeReasonCode>
pub fn get_code(&self) -> &Option<ClusterStateChangeReasonCode>
The programmatic code for the state change reason.
sourcepub fn message(self, input: impl Into<String>) -> Self
pub fn message(self, input: impl Into<String>) -> Self
The descriptive message for the state change reason.
sourcepub fn set_message(self, input: Option<String>) -> Self
pub fn set_message(self, input: Option<String>) -> Self
The descriptive message for the state change reason.
sourcepub fn get_message(&self) -> &Option<String>
pub fn get_message(&self) -> &Option<String>
The descriptive message for the state change reason.
sourcepub fn build(self) -> ClusterStateChangeReason
pub fn build(self) -> ClusterStateChangeReason
Consumes the builder and constructs a ClusterStateChangeReason
.
Trait Implementations§
source§impl Clone for ClusterStateChangeReasonBuilder
impl Clone for ClusterStateChangeReasonBuilder
source§fn clone(&self) -> ClusterStateChangeReasonBuilder
fn clone(&self) -> ClusterStateChangeReasonBuilder
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 ClusterStateChangeReasonBuilder
impl Default for ClusterStateChangeReasonBuilder
source§fn default() -> ClusterStateChangeReasonBuilder
fn default() -> ClusterStateChangeReasonBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ClusterStateChangeReasonBuilder
impl PartialEq for ClusterStateChangeReasonBuilder
source§fn eq(&self, other: &ClusterStateChangeReasonBuilder) -> bool
fn eq(&self, other: &ClusterStateChangeReasonBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ClusterStateChangeReasonBuilder
Auto Trait Implementations§
impl Freeze for ClusterStateChangeReasonBuilder
impl RefUnwindSafe for ClusterStateChangeReasonBuilder
impl Send for ClusterStateChangeReasonBuilder
impl Sync for ClusterStateChangeReasonBuilder
impl Unpin for ClusterStateChangeReasonBuilder
impl UnwindSafe for ClusterStateChangeReasonBuilder
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>
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.