Properly use default trait

This commit is contained in:
Filip Tibell 2024-01-26 08:21:31 +01:00
parent 588fc46807
commit b10ec240da
No known key found for this signature in database
2 changed files with 9 additions and 7 deletions

View file

@ -22,12 +22,6 @@ impl ThreadErrorCallback {
} }
} }
pub fn new_default() -> Self {
let this = Self::new();
this.replace(default_error_callback);
this
}
pub fn replace(&self, callback: impl Fn(LuaError) + Send + 'static) { pub fn replace(&self, callback: impl Fn(LuaError) + Send + 'static) {
self.exists.store(true, Ordering::Relaxed); self.exists.store(true, Ordering::Relaxed);
self.inner.lock_blocking().replace(Box::new(callback)); self.inner.lock_blocking().replace(Box::new(callback));
@ -50,3 +44,11 @@ impl ThreadErrorCallback {
fn default_error_callback(e: LuaError) { fn default_error_callback(e: LuaError) {
eprintln!("{e}"); eprintln!("{e}");
} }
impl Default for ThreadErrorCallback {
fn default() -> Self {
let this = Self::new();
this.replace(default_error_callback);
this
}
}

View file

@ -28,7 +28,7 @@ impl<'lua> Runtime<'lua> {
pub fn new(lua: &'lua Lua) -> LuaResult<Runtime<'lua>> { pub fn new(lua: &'lua Lua) -> LuaResult<Runtime<'lua>> {
let queue_spawn = ThreadQueue::new(); let queue_spawn = ThreadQueue::new();
let queue_defer = ThreadQueue::new(); let queue_defer = ThreadQueue::new();
let error_callback = ThreadErrorCallback::new_default(); let error_callback = ThreadErrorCallback::default();
Ok(Runtime { Ok(Runtime {
lua, lua,