#[non_exhaustive]pub struct CapacityLimitsBuilder { /* private fields */ }
Expand description
A builder for CapacityLimits
.
Implementations§
source§impl CapacityLimitsBuilder
impl CapacityLimitsBuilder
sourcepub fn max_indexing_capacity_in_ocu(self, input: i32) -> Self
pub fn max_indexing_capacity_in_ocu(self, input: i32) -> Self
The maximum indexing capacity for collections.
sourcepub fn set_max_indexing_capacity_in_ocu(self, input: Option<i32>) -> Self
pub fn set_max_indexing_capacity_in_ocu(self, input: Option<i32>) -> Self
The maximum indexing capacity for collections.
sourcepub fn max_search_capacity_in_ocu(self, input: i32) -> Self
pub fn max_search_capacity_in_ocu(self, input: i32) -> Self
The maximum search capacity for collections.
sourcepub fn set_max_search_capacity_in_ocu(self, input: Option<i32>) -> Self
pub fn set_max_search_capacity_in_ocu(self, input: Option<i32>) -> Self
The maximum search capacity for collections.
sourcepub fn build(self) -> CapacityLimits
pub fn build(self) -> CapacityLimits
Consumes the builder and constructs a CapacityLimits
.
Trait Implementations§
source§impl Clone for CapacityLimitsBuilder
impl Clone for CapacityLimitsBuilder
source§fn clone(&self) -> CapacityLimitsBuilder
fn clone(&self) -> CapacityLimitsBuilder
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 CapacityLimitsBuilder
impl Debug for CapacityLimitsBuilder
source§impl Default for CapacityLimitsBuilder
impl Default for CapacityLimitsBuilder
source§fn default() -> CapacityLimitsBuilder
fn default() -> CapacityLimitsBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<CapacityLimitsBuilder> for CapacityLimitsBuilder
impl PartialEq<CapacityLimitsBuilder> for CapacityLimitsBuilder
source§fn eq(&self, other: &CapacityLimitsBuilder) -> bool
fn eq(&self, other: &CapacityLimitsBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CapacityLimitsBuilder
Auto Trait Implementations§
impl RefUnwindSafe for CapacityLimitsBuilder
impl Send for CapacityLimitsBuilder
impl Sync for CapacityLimitsBuilder
impl Unpin for CapacityLimitsBuilder
impl UnwindSafe for CapacityLimitsBuilder
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