use std::cell::Ref; use mlua::prelude::*; use num::cast::AsPrimitive; use super::FfiData; #[inline] pub fn num_cast(from: &Ref, into: &Ref) -> LuaResult<()> where From: AsPrimitive, Into: 'static + Copy, { let from_ptr = unsafe { from.get_pointer().cast::() }; let into_ptr = unsafe { into.get_pointer().cast::() }; unsafe { *into_ptr = (*from_ptr).as_(); } Ok(()) }