Struct hlua::InsideCallback

source ·
pub struct InsideCallback { /* private fields */ }
Expand description

Opaque type that represents the Lua context when inside a callback.

Some types (like Result) can only be returned from a callback and not written inside a Lua variable. This type is here to enforce this restriction.

Trait Implementations§

source§

impl<'a, 'lua> AsLua<'lua> for &'a InsideCallback

source§

impl<'a, 'lua> AsLua<'lua> for &'a mut InsideCallback

source§

impl<'a, 'lua> AsMutLua<'lua> for &'a mut InsideCallback

source§

fn as_mut_lua(&mut self) -> LuaContext

Returns the raw Lua context.
source§

impl Debug for InsideCallback

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'a, T, E, P> Push<&'a mut InsideCallback> for Result<T, E>
where T: Push<&'a mut InsideCallback, Err = P> + for<'b> Push<&'b mut &'a mut InsideCallback, Err = P>, E: Display,

§

type Err = P

Error that can happen when pushing a value.
source§

fn push_to_lua( self, lua: &'a mut InsideCallback ) -> Result<PushGuard<&'a mut InsideCallback>, (P, &'a mut InsideCallback)>

Pushes the value on the top of the stack. Read more
source§

fn push_no_err<E>(self, lua: L) -> PushGuard<L>
where Self: Sized + Push<L, Err = E>, E: Into<Void>,

Same as push_to_lua but can only succeed and is only available if Err is Void.
source§

impl<'a, T, E, P> PushOne<&'a mut InsideCallback> for Result<T, E>
where T: PushOne<&'a mut InsideCallback, Err = P> + for<'b> PushOne<&'b mut &'a mut InsideCallback, Err = P>, E: Display,

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.