Struct haproxy_api::Txn [−][src]
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]
S: AsRef<str>,
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]
S: AsRef<str>,
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
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]
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>,