Struct object::read::StringTable
source · [−]Expand description
A table of zero-terminated strings.
This is used for most file formats.
Implementations
Trait Implementations
sourceimpl<'data, R: Clone> Clone for StringTable<'data, R> where
R: ReadRef<'data>,
impl<'data, R: Clone> Clone for StringTable<'data, R> where
R: ReadRef<'data>,
sourcefn clone(&self) -> StringTable<'data, R>
fn clone(&self) -> StringTable<'data, R>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<'data, R: Debug> Debug for StringTable<'data, R> where
R: ReadRef<'data>,
impl<'data, R: Debug> Debug for StringTable<'data, R> where
R: ReadRef<'data>,
sourceimpl<'data, R: ReadRef<'data>> Default for StringTable<'data, R>
impl<'data, R: ReadRef<'data>> Default for StringTable<'data, R>
impl<'data, R: Copy> Copy for StringTable<'data, R> where
R: ReadRef<'data>,
Auto Trait Implementations
impl<'data, R> RefUnwindSafe for StringTable<'data, R> where
R: RefUnwindSafe,
impl<'data, R> Send for StringTable<'data, R> where
R: Send,
impl<'data, R> Sync for StringTable<'data, R> where
R: Sync,
impl<'data, R> Unpin for StringTable<'data, R> where
R: Unpin,
impl<'data, R> UnwindSafe for StringTable<'data, R> where
R: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more