pub struct SecondaryIndexLimits {Show 15 fields
pub max_term_bytes: usize,
pub max_projection_bytes: usize,
pub max_all_value_bytes: usize,
pub max_terms_per_record: usize,
pub max_projected_bytes_per_record: usize,
pub max_derived_mutations_per_transaction: usize,
pub max_projected_bytes_per_transaction: usize,
pub max_indexes: usize,
pub build_page_size: usize,
pub max_temporary_sort_bytes: usize,
pub max_bundle_nodes: usize,
pub max_bundle_bytes: usize,
pub max_verification_entries: usize,
pub max_write_retries: usize,
pub max_build_retries: usize,
}Expand description
Resource bounds applied before index-derived buffers are published.
Fields§
§max_term_bytes: usize§max_projection_bytes: usize§max_all_value_bytes: usize§max_terms_per_record: usize§max_projected_bytes_per_record: usize§max_derived_mutations_per_transaction: usize§max_projected_bytes_per_transaction: usize§max_indexes: usize§build_page_size: usize§max_temporary_sort_bytes: usize§max_bundle_nodes: usize§max_bundle_bytes: usize§max_verification_entries: usize§max_write_retries: usize§max_build_retries: usizeTrait Implementations§
Source§impl Clone for SecondaryIndexLimits
impl Clone for SecondaryIndexLimits
Source§fn clone(&self) -> SecondaryIndexLimits
fn clone(&self) -> SecondaryIndexLimits
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SecondaryIndexLimits
impl Debug for SecondaryIndexLimits
Source§impl Default for SecondaryIndexLimits
impl Default for SecondaryIndexLimits
impl Eq for SecondaryIndexLimits
Source§impl PartialEq for SecondaryIndexLimits
impl PartialEq for SecondaryIndexLimits
impl StructuralPartialEq for SecondaryIndexLimits
Auto Trait Implementations§
impl Freeze for SecondaryIndexLimits
impl RefUnwindSafe for SecondaryIndexLimits
impl Send for SecondaryIndexLimits
impl Sync for SecondaryIndexLimits
impl Unpin for SecondaryIndexLimits
impl UnsafeUnpin for SecondaryIndexLimits
impl UnwindSafe for SecondaryIndexLimits
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§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 more