pub enum ReceiverFanoutProfile {
Conservative,
Balanced,
Aggressive,
}Expand description
High-level receiver fanout profile.
Variants§
Conservative
Keep receiver fanout minimal to reduce background overhead.
Balanced
Balanced settings for a small VPS.
Aggressive
Aggressive fanout for dedicated hosts.
Trait Implementations§
Source§impl Clone for ReceiverFanoutProfile
impl Clone for ReceiverFanoutProfile
Source§fn clone(&self) -> ReceiverFanoutProfile
fn clone(&self) -> ReceiverFanoutProfile
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 ReceiverFanoutProfile
impl Debug for ReceiverFanoutProfile
Source§impl PartialEq for ReceiverFanoutProfile
impl PartialEq for ReceiverFanoutProfile
impl Copy for ReceiverFanoutProfile
impl Eq for ReceiverFanoutProfile
impl StructuralPartialEq for ReceiverFanoutProfile
Auto Trait Implementations§
impl Freeze for ReceiverFanoutProfile
impl RefUnwindSafe for ReceiverFanoutProfile
impl Send for ReceiverFanoutProfile
impl Sync for ReceiverFanoutProfile
impl Unpin for ReceiverFanoutProfile
impl UnsafeUnpin for ReceiverFanoutProfile
impl UnwindSafe for ReceiverFanoutProfile
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