pub trait LuaStringRefExt {
// Required methods
fn is_white(&self) -> bool;
fn hash(&self) -> u32;
fn as_gc_ref(&self) -> GcRef<LuaString>;
}Required Methods§
fn is_white(&self) -> bool
fn hash(&self) -> u32
fn as_gc_ref(&self) -> GcRef<LuaString>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".