[][src]Struct pdb::StringRef

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.

Methods

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 Copy for StringRef[src]

impl Clone for StringRef[src]

default fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq<StringRef> for StringRef[src]

impl PartialOrd<StringRef> for StringRef[src]

impl Eq for StringRef[src]

impl From<u32> for StringRef[src]

impl From<StringRef> for u32[src]

impl Ord for StringRef[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the maximum of two values. Read more

default fn min(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the minimum of two values. Read more

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

impl Display for StringRef[src]

impl Hash for StringRef[src]

default fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for StringRef[src]

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

type Error = Error

type Size = usize

Auto Trait Implementations

impl Send for StringRef

impl Sync for StringRef

Blanket Implementations

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

type Owned = T

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

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.