pub struct StrtabRef {
pub offset: usize,
pub size: usize,
}
Expand description
An (offset, size)
reference to a string within some string table.
Fields§
§offset: usize
The string’s offset within its string table.
size: usize
The string’s size, in bytes.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for StrtabRef
impl RefUnwindSafe for StrtabRef
impl Send for StrtabRef
impl Sync for StrtabRef
impl Unpin for StrtabRef
impl UnwindSafe for StrtabRef
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