pub struct AsyncProximityBuildOptions {
pub parallelism: BuildParallelism,
pub max_records: Option<usize>,
pub max_owned_bytes: Option<usize>,
pub publication_batch_items: usize,
}Expand description
Runtime-only limits for canonical async proximity construction.
Fields§
§parallelism: BuildParallelism§max_records: Option<usize>§max_owned_bytes: Option<usize>§publication_batch_items: usizeTrait Implementations§
Source§impl Clone for AsyncProximityBuildOptions
impl Clone for AsyncProximityBuildOptions
Source§fn clone(&self) -> AsyncProximityBuildOptions
fn clone(&self) -> AsyncProximityBuildOptions
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 AsyncProximityBuildOptions
impl Debug for AsyncProximityBuildOptions
Source§impl Default for AsyncProximityBuildOptions
impl Default for AsyncProximityBuildOptions
impl Eq for AsyncProximityBuildOptions
impl StructuralPartialEq for AsyncProximityBuildOptions
Auto Trait Implementations§
impl Freeze for AsyncProximityBuildOptions
impl RefUnwindSafe for AsyncProximityBuildOptions
impl Send for AsyncProximityBuildOptions
impl Sync for AsyncProximityBuildOptions
impl Unpin for AsyncProximityBuildOptions
impl UnsafeUnpin for AsyncProximityBuildOptions
impl UnwindSafe for AsyncProximityBuildOptions
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