pub enum SnapshotBatchStrategy {
Auto,
SingleRequest,
Chunked {
chunk_size: usize,
max_concurrent_requests: usize,
},
}Variants§
Trait Implementations§
Source§impl Clone for SnapshotBatchStrategy
impl Clone for SnapshotBatchStrategy
Source§fn clone(&self) -> SnapshotBatchStrategy
fn clone(&self) -> SnapshotBatchStrategy
Returns a duplicate 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 SnapshotBatchStrategy
impl Debug for SnapshotBatchStrategy
Source§impl Default for SnapshotBatchStrategy
impl Default for SnapshotBatchStrategy
Source§fn default() -> SnapshotBatchStrategy
fn default() -> SnapshotBatchStrategy
Returns the “default value” for a type. Read more
Source§impl PartialEq for SnapshotBatchStrategy
impl PartialEq for SnapshotBatchStrategy
impl Eq for SnapshotBatchStrategy
impl StructuralPartialEq for SnapshotBatchStrategy
Auto Trait Implementations§
impl Freeze for SnapshotBatchStrategy
impl RefUnwindSafe for SnapshotBatchStrategy
impl Send for SnapshotBatchStrategy
impl Sync for SnapshotBatchStrategy
impl Unpin for SnapshotBatchStrategy
impl UnsafeUnpin for SnapshotBatchStrategy
impl UnwindSafe for SnapshotBatchStrategy
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.