pub struct StringTable<'a> { /* private fields */ }
Expand description
A view of the Library’s String table
The inner raw
reference refers to a continguous array of zero terminated strings.
The string table view is needed to arbitrarily access into the data and pull out the null terminated strings.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for StringTable<'a>
impl<'a> RefUnwindSafe for StringTable<'a>
impl<'a> Send for StringTable<'a>
impl<'a> Sync for StringTable<'a>
impl<'a> Unpin for StringTable<'a>
impl<'a> UnwindSafe for StringTable<'a>
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