pub enum ReplicationSelectionMode {
Throughput,
Prioritized,
}Expand description
Selection semantics for the canonical configured replication kernel.
Variants§
Throughput
Deterministic first-fit selection that stops once the budget is full.
Prioritized
Deterministic global priority selection over every eligible candidate.
Trait Implementations§
Source§impl Clone for ReplicationSelectionMode
impl Clone for ReplicationSelectionMode
Source§fn clone(&self) -> ReplicationSelectionMode
fn clone(&self) -> ReplicationSelectionMode
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 moreimpl Copy for ReplicationSelectionMode
Source§impl Debug for ReplicationSelectionMode
impl Debug for ReplicationSelectionMode
Source§impl Default for ReplicationSelectionMode
impl Default for ReplicationSelectionMode
Source§fn default() -> ReplicationSelectionMode
fn default() -> ReplicationSelectionMode
Returns the “default value” for a type. Read more
impl Eq for ReplicationSelectionMode
Source§impl PartialEq for ReplicationSelectionMode
impl PartialEq for ReplicationSelectionMode
impl StructuralPartialEq for ReplicationSelectionMode
Auto Trait Implementations§
impl Freeze for ReplicationSelectionMode
impl RefUnwindSafe for ReplicationSelectionMode
impl Send for ReplicationSelectionMode
impl Sync for ReplicationSelectionMode
impl Unpin for ReplicationSelectionMode
impl UnsafeUnpin for ReplicationSelectionMode
impl UnwindSafe for ReplicationSelectionMode
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