Struct aws_sdk_elasticache::types::builders::SlotMigrationBuilder
source · #[non_exhaustive]pub struct SlotMigrationBuilder { /* private fields */ }
Expand description
A builder for SlotMigration
.
Implementations§
source§impl SlotMigrationBuilder
impl SlotMigrationBuilder
sourcepub fn progress_percentage(self, input: f64) -> Self
pub fn progress_percentage(self, input: f64) -> Self
The percentage of the slot migration that is complete.
sourcepub fn set_progress_percentage(self, input: Option<f64>) -> Self
pub fn set_progress_percentage(self, input: Option<f64>) -> Self
The percentage of the slot migration that is complete.
sourcepub fn get_progress_percentage(&self) -> &Option<f64>
pub fn get_progress_percentage(&self) -> &Option<f64>
The percentage of the slot migration that is complete.
sourcepub fn build(self) -> SlotMigration
pub fn build(self) -> SlotMigration
Consumes the builder and constructs a SlotMigration
.
Trait Implementations§
source§impl Clone for SlotMigrationBuilder
impl Clone for SlotMigrationBuilder
source§fn clone(&self) -> SlotMigrationBuilder
fn clone(&self) -> SlotMigrationBuilder
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 SlotMigrationBuilder
impl Debug for SlotMigrationBuilder
source§impl Default for SlotMigrationBuilder
impl Default for SlotMigrationBuilder
source§fn default() -> SlotMigrationBuilder
fn default() -> SlotMigrationBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for SlotMigrationBuilder
impl PartialEq for SlotMigrationBuilder
source§fn eq(&self, other: &SlotMigrationBuilder) -> bool
fn eq(&self, other: &SlotMigrationBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SlotMigrationBuilder
Auto Trait Implementations§
impl Freeze for SlotMigrationBuilder
impl RefUnwindSafe for SlotMigrationBuilder
impl Send for SlotMigrationBuilder
impl Sync for SlotMigrationBuilder
impl Unpin for SlotMigrationBuilder
impl UnwindSafe for SlotMigrationBuilder
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.