From b10ec240da38f52edef08cbe448da0cedba86a6d Mon Sep 17 00:00:00 2001 From: Filip Tibell Date: Fri, 26 Jan 2024 08:21:31 +0100 Subject: [PATCH] Properly use default trait --- lib/error_callback.rs | 14 ++++++++------ lib/runtime.rs | 2 +- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/lib/error_callback.rs b/lib/error_callback.rs index 1e9f04b..6a16b86 100644 --- a/lib/error_callback.rs +++ b/lib/error_callback.rs @@ -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) { self.exists.store(true, Ordering::Relaxed); self.inner.lock_blocking().replace(Box::new(callback)); @@ -50,3 +44,11 @@ impl ThreadErrorCallback { fn default_error_callback(e: LuaError) { eprintln!("{e}"); } + +impl Default for ThreadErrorCallback { + fn default() -> Self { + let this = Self::new(); + this.replace(default_error_callback); + this + } +} diff --git a/lib/runtime.rs b/lib/runtime.rs index 7887bb8..7dc50c8 100644 --- a/lib/runtime.rs +++ b/lib/runtime.rs @@ -28,7 +28,7 @@ impl<'lua> Runtime<'lua> { pub fn new(lua: &'lua Lua) -> LuaResult> { let queue_spawn = ThreadQueue::new(); let queue_defer = ThreadQueue::new(); - let error_callback = ThreadErrorCallback::new_default(); + let error_callback = ThreadErrorCallback::default(); Ok(Runtime { lua,