pub struct VSStringTable<'data> {
    pub length: &'data u16,
    pub value_length: &'data u16,
    pub type_: &'data u16,
    pub key: &'data [WChar],
    pub children: Vec<VSString<'data>>,
}
Expand description

Represents a StringTable structure.

Fields

length: &'data u16value_length: &'data u16type_: &'data u16key: &'data [WChar]children: Vec<VSString<'data>>

Implementations

Parse a VSStringTable structure at the given RVA.

Grab the key data as a u32 value. Useful for grabbing the code page and language ID from the text representation.

Grab the codepage value of this string table.

Grab the codepage value of this string table.

Grab the string table data as a key/value HashMap value.

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.

Should always be Self

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.