pub fn store<F, A, R, E>(fun: F) -> i32where
    F: 'static + Fn(A) -> Result<R, E>,
    A: Poppable,
    R: Pushable,
    E: 'static + Error,
Expand description

Stores a function in the Lua registry, returning its ref.