pub trait LuaProtoExt {
// Required methods
fn source_bytes(&self) -> &[u8] ⓘ;
fn source_string(&self) -> Option<&GcRef<LuaString>>;
}Expand description
LuaProto source bytes accessor.
Required Methods§
fn source_bytes(&self) -> &[u8] ⓘ
fn source_string(&self) -> Option<&GcRef<LuaString>>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".