Enum sozu_command_lib::config::LoadBalancingAlgorithms[][src]

pub enum LoadBalancingAlgorithms {
    RoundRobin,
    Random,
    LeastConnections,
}

Variants

Trait Implementations

impl Debug for LoadBalancingAlgorithms
[src]

Formats the value using the given formatter. Read more

impl Copy for LoadBalancingAlgorithms
[src]

impl Clone for LoadBalancingAlgorithms
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for LoadBalancingAlgorithms
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for LoadBalancingAlgorithms
[src]

impl Hash for LoadBalancingAlgorithms
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl Default for LoadBalancingAlgorithms
[src]

Returns the "default value" for a type. Read more

impl FromStr for LoadBalancingAlgorithms
[src]

The associated error which can be returned from parsing.

Parses a string s to return a value of this type. Read more

Auto Trait Implementations