Struct sim::models::load_balancer::LoadBalancer[][src]

pub struct LoadBalancer { /* fields omitted */ }

The load balancer routes jobs to a set of possible process paths, using a round robin strategy. There is no stochastic behavior in this model.

Implementations

impl LoadBalancer[src]

pub fn new(
    job_port: String,
    flow_path_ports: Vec<String>,
    snapshot_metrics: bool,
    history_metrics: bool
) -> Self
[src]

Trait Implementations

impl AsModel for LoadBalancer[src]

impl Clone for LoadBalancer[src]

impl Debug for LoadBalancer[src]

impl<'de> Deserialize<'de> for LoadBalancer[src]

impl From<LoadBalancer> for ModelType[src]

impl Serialize for LoadBalancer[src]

impl TryInto<LoadBalancer> for ModelType[src]

type Error = &'static str

The type returned in the event of a conversion error.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,