Struct haproxy_api::Txn[][src]

pub struct Txn<'lua> {
    pub c: Converters<'lua>,
    pub f: Fetches<'lua>,
    // some fields omitted
}

The txn class contain all the functions relative to the http or tcp transaction.

Fields

c: Converters<'lua>f: Fetches<'lua>

Implementations

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

pub fn http(&self) -> Result<Http<'lua>>[src]

Returns an HTTP class object.

pub fn log<S: ?Sized>(&self, level: LogLevel, msg: &S) -> Result<()> where
    S: AsRef<str>, 
[src]

Sends a log on the default syslog server if it is configured and on the stderr if it is allowed.

pub fn deflog<S: ?Sized>(&self, msg: &S) -> Result<()> where
    S: AsRef<str>, 
[src]

Sends a log line with the default loglevel for the proxy associated with the transaction.

pub fn get_priv<R: FromLua<'lua>>(&self) -> Result<R>[src]

Returns data stored in the current transaction (with the set_priv()) function.

pub fn set_priv<A: ToLua<'lua>>(&self, val: A) -> Result<()>[src]

Stores any data in the current HAProxy transaction. This action replaces the old stored data.

pub fn get_var<R: FromLua<'lua>>(&self, name: &str) -> Result<R>[src]

Returns data stored in the variable name.

pub fn set_var<A: ToLua<'lua>>(&self, name: &str, val: A) -> Result<()>[src]

Store variable name in an HAProxy converting the type.

pub fn unset_var(&self, name: &str) -> Result<()>[src]

Unsets the variable name.

pub fn set_loglevel(&self, level: LogLevel) -> Result<()>[src]

Changes the log level of the current request. The level must be an integer between 0 and 7.

Trait Implementations

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

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

Auto Trait Implementations

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

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

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

impl<'lua> Unpin for Txn<'lua>

impl<'lua> !UnwindSafe for Txn<'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.