pub enum TableIndexes {
Parsed(IndexBlob),
Raw(Vec<u8>),
}Expand description
A table’s index region: understood, or preserved as-is.
Variants§
Parsed(IndexBlob)
Raw(Vec<u8>)
Kept verbatim because it did not parse. Such a table must not be modified: its offsets are relative to the table and would go stale.
Implementations§
Trait Implementations§
Source§impl Clone for TableIndexes
impl Clone for TableIndexes
Source§fn clone(&self) -> TableIndexes
fn clone(&self) -> TableIndexes
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TableIndexes
impl Debug for TableIndexes
impl Eq for TableIndexes
Source§impl PartialEq for TableIndexes
impl PartialEq for TableIndexes
impl StructuralPartialEq for TableIndexes
Auto Trait Implementations§
impl Freeze for TableIndexes
impl RefUnwindSafe for TableIndexes
impl Send for TableIndexes
impl Sync for TableIndexes
impl Unpin for TableIndexes
impl UnsafeUnpin for TableIndexes
impl UnwindSafe for TableIndexes
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