pub enum LoadBalancing {
RoundRobin,
}Expand description
Load balancing strategy used by ReverseProxy.
Variants§
RoundRobin
Distribute requests across backends in a cyclic order.
Auto Trait Implementations§
impl Freeze for LoadBalancing
impl RefUnwindSafe for LoadBalancing
impl Send for LoadBalancing
impl Sync for LoadBalancing
impl Unpin for LoadBalancing
impl UnsafeUnpin for LoadBalancing
impl UnwindSafe for LoadBalancing
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