pub struct StringTable<'s> { /* private fields */ }
Expand description

The global string table of a PDB.

The string table is a two-way mapping from offset to string and back. It can be used to resolve StringRef offsets to their string values. Sometimes, it is also referred to as “Name table”. The mapping from string to offset has not been implemented yet.

Use PDB::string_table to obtain an instance.

Implementations

Resolves a string value from this string table.

Errors if the offset is out of bounds, otherwise returns the raw binary string value.

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.