Struct aws_sdk_m2::types::builders::AlternateKeyBuilder
source · #[non_exhaustive]pub struct AlternateKeyBuilder { /* private fields */ }Expand description
A builder for AlternateKey.
Implementations§
source§impl AlternateKeyBuilder
impl AlternateKeyBuilder
sourcepub fn offset(self, input: i32) -> Self
pub fn offset(self, input: i32) -> Self
A positive integer value representing the offset to mark the start of the alternate key part in the record byte array.
sourcepub fn set_offset(self, input: Option<i32>) -> Self
pub fn set_offset(self, input: Option<i32>) -> Self
A positive integer value representing the offset to mark the start of the alternate key part in the record byte array.
sourcepub fn length(self, input: i32) -> Self
pub fn length(self, input: i32) -> Self
A strictly positive integer value representing the length of the alternate key.
sourcepub fn set_length(self, input: Option<i32>) -> Self
pub fn set_length(self, input: Option<i32>) -> Self
A strictly positive integer value representing the length of the alternate key.
sourcepub fn allow_duplicates(self, input: bool) -> Self
pub fn allow_duplicates(self, input: bool) -> Self
Indicates whether the alternate key values are supposed to be unique for the given data set.
sourcepub fn set_allow_duplicates(self, input: Option<bool>) -> Self
pub fn set_allow_duplicates(self, input: Option<bool>) -> Self
Indicates whether the alternate key values are supposed to be unique for the given data set.
sourcepub fn build(self) -> AlternateKey
pub fn build(self) -> AlternateKey
Consumes the builder and constructs a AlternateKey.
Trait Implementations§
source§impl Clone for AlternateKeyBuilder
impl Clone for AlternateKeyBuilder
source§fn clone(&self) -> AlternateKeyBuilder
fn clone(&self) -> AlternateKeyBuilder
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 AlternateKeyBuilder
impl Debug for AlternateKeyBuilder
source§impl Default for AlternateKeyBuilder
impl Default for AlternateKeyBuilder
source§fn default() -> AlternateKeyBuilder
fn default() -> AlternateKeyBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<AlternateKeyBuilder> for AlternateKeyBuilder
impl PartialEq<AlternateKeyBuilder> for AlternateKeyBuilder
source§fn eq(&self, other: &AlternateKeyBuilder) -> bool
fn eq(&self, other: &AlternateKeyBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for AlternateKeyBuilder
Auto Trait Implementations§
impl RefUnwindSafe for AlternateKeyBuilder
impl Send for AlternateKeyBuilder
impl Sync for AlternateKeyBuilder
impl Unpin for AlternateKeyBuilder
impl UnwindSafe for AlternateKeyBuilder
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