Struct sozu_command_lib::config::TcpAppConfig[][src]

pub struct TcpAppConfig {
    pub app_id: String,
    pub frontends: Vec<TcpFrontendConfig>,
    pub backends: Vec<BackendConfig>,
    pub proxy_protocol: Option<ProxyProtocolConfig>,
    pub load_balancing_policy: LoadBalancingAlgorithms,
}

Fields

app_id: Stringfrontends: Vec<TcpFrontendConfig>backends: Vec<BackendConfig>proxy_protocol: Option<ProxyProtocolConfig>load_balancing_policy: LoadBalancingAlgorithms

Implementations

impl TcpAppConfig[src]

Trait Implementations

impl Clone for TcpAppConfig[src]

impl Debug for TcpAppConfig[src]

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

impl Eq for TcpAppConfig[src]

impl Hash for TcpAppConfig[src]

impl PartialEq<TcpAppConfig> for TcpAppConfig[src]

impl Serialize for TcpAppConfig[src]

impl StructuralEq for TcpAppConfig[src]

impl StructuralPartialEq for TcpAppConfig[src]

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> Same<T> for T

type Output = T

Should always be Self

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.