Struct haproxy_api::Proxy [−][src]
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
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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<'lua, T> FromLuaMulti<'lua> for T where
T: FromLua<'lua>, [src]
T: FromLua<'lua>,
pub fn from_lua_multi(
values: MultiValue<'lua>,
lua: &'lua Lua
) -> Result<T, Error>[src]
values: MultiValue<'lua>,
lua: &'lua Lua
) -> Result<T, Error>
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,