pub struct SimpleLoadBalancer<T>{ /* private fields */ }Expand description
A simple load balancer that selects entries in sequential order.
Implementations§
Source§impl<T> SimpleLoadBalancer<T>
impl<T> SimpleLoadBalancer<T>
Trait Implementations§
Source§impl<T> BoxLoadBalancer<T> for SimpleLoadBalancer<T>
impl<T> BoxLoadBalancer<T> for SimpleLoadBalancer<T>
Source§impl<T> Clone for SimpleLoadBalancer<T>
impl<T> Clone for SimpleLoadBalancer<T>
Source§fn clone(&self) -> SimpleLoadBalancer<T>
fn clone(&self) -> SimpleLoadBalancer<T>
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 moreAuto Trait Implementations§
impl<T> Freeze for SimpleLoadBalancer<T>
impl<T> !RefUnwindSafe for SimpleLoadBalancer<T>
impl<T> Send for SimpleLoadBalancer<T>
impl<T> Sync for SimpleLoadBalancer<T>
impl<T> Unpin for SimpleLoadBalancer<T>
impl<T> !UnwindSafe for SimpleLoadBalancer<T>
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