Struct pdb::StringRef[][src]

pub struct StringRef(pub u32);

A reference to a string in the string table.

This type stores an offset into the global string table of the PDB. To retrieve the string value, use to_raw_string, to_string_lossy or methods on StringTable.

Implementations

impl StringRef[src]

pub fn to_raw_string<'s>(
    self,
    strings: &'s StringTable<'_>
) -> Result<RawString<'s>>
[src]

Resolves the raw string value of this reference.

This method errors if the offset is out of bounds of the string table. Use PDB::string_table to obtain an instance of the string table.

pub fn to_string_lossy<'s>(
    self,
    strings: &'s StringTable<'_>
) -> Result<Cow<'s, str>>
[src]

Resolves and decodes the UTF-8 string value of this reference.

This method errors if the offset is out of bounds of the string table. Use PDB::string_table to obtain an instance of the string table.

Trait Implementations

impl Clone for StringRef[src]

impl Copy for StringRef[src]

impl Debug for StringRef[src]

impl Display for StringRef[src]

impl Eq for StringRef[src]

impl From<u32> for StringRef[src]

impl Hash for StringRef[src]

impl Ord for StringRef[src]

impl PartialEq<StringRef> for StringRef[src]

impl PartialOrd<StringRef> for StringRef[src]

impl StructuralEq for StringRef[src]

impl StructuralPartialEq for StringRef[src]

impl<'a> TryFromCtx<'a, Endian, [u8]> for StringRef[src]

type Error = Error

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.