pub struct LuaStr { /* private fields */ }Expand description
Lua string object — header plus inline byte payload. Byte-clean (Lua
strings are arbitrary byte sequences, not necessarily UTF-8). Access the
bytes via Gc<LuaStr>::as_bytes.
Implementations§
Auto Trait Implementations§
impl !Freeze for LuaStr
impl !RefUnwindSafe for LuaStr
impl !Send for LuaStr
impl !Sync for LuaStr
impl !UnwindSafe for LuaStr
impl Unpin for LuaStr
impl UnsafeUnpin for LuaStr
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more