Struct haproxy_api::Proxy[][src]

pub struct Proxy<'lua> {
    pub name: String,
    pub uuid: String,
    pub stktable: Option<StickTable<'lua>>,
    // some fields omitted
}

The “Proxy” class provides a way for manipulating proxy and retrieving information like statistics.

Fields

name: Stringuuid: Stringstktable: Option<StickTable<'lua>>

Implementations

impl<'lua> Proxy<'lua>[src]

pub fn pause(&self) -> Result<()>[src]

Pauses the proxy. See the management socket documentation for more information.

pub fn resume(&self) -> Result<()>[src]

Resumes the proxy. See the management socket documentation for more information.

pub fn stop(&self) -> Result<()>[src]

Stops the proxy. See the management socket documentation for more information.

pub fn shut_bcksess(&self) -> Result<()>[src]

Kills the session attached to a backup server. See the management socket documentation for more information.

pub fn get_cap(&self) -> Result<ProxyCapability>[src]

Returns a enum describing the capabilities of the proxy.

pub fn get_mode(&self) -> Result<ProxyMode>[src]

Returns a enum describing the mode of the current proxy.

pub fn get_stats(&self) -> Result<Table<'lua>>[src]

Returns a table containing the proxy statistics. The statistics returned are not the same if the proxy is frontend or a backend.

pub fn servers(&self) -> Result<HashMap<String, Server<'lua>>>[src]

Returns a map with the attached servers. The map is indexed by server name.

Trait Implementations

impl<'lua> Clone for Proxy<'lua>[src]

impl<'lua> FromLua<'lua> for Proxy<'lua>[src]

Auto Trait Implementations

impl<'lua> !RefUnwindSafe for Proxy<'lua>

impl<'lua> !Send for Proxy<'lua>

impl<'lua> !Sync for Proxy<'lua>

impl<'lua> Unpin for Proxy<'lua>

impl<'lua> !UnwindSafe for Proxy<'lua>

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> From<T> for T[src]

impl<'lua, T> FromLuaMulti<'lua> for T where
    T: FromLua<'lua>, 
[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.