[−][src]Struct pdb::StringRef
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]
self,
strings: &'s StringTable
) -> Result<RawString<'s>>
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]
self,
strings: &'s StringTable
) -> Result<Cow<'s, str>>
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]
fn clone(&self) -> 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]
fn partial_cmp(&self, other: &StringRef) -> Option<Ordering>[src]
fn lt(&self, other: &StringRef) -> bool[src]
fn le(&self, other: &StringRef) -> bool[src]
fn gt(&self, other: &StringRef) -> bool[src]
fn ge(&self, other: &StringRef) -> bool[src]
impl Eq for StringRef[src]
impl From<u32> for StringRef[src]
impl From<StringRef> for u32[src]
impl Ord for StringRef[src]
fn cmp(&self, other: &StringRef) -> Ordering[src]
default fn max(self, other: Self) -> Self1.21.0[src]
Compares and returns the maximum of two values. Read more
default fn min(self, other: Self) -> Self1.21.0[src]
Compares and returns the minimum of two values. Read more
default fn clamp(self, min: Self, max: Self) -> Self[src]
clamp)Restrict a value to a certain interval. Read more
impl Display for StringRef[src]
impl Hash for StringRef[src]
fn hash<__H: Hasher>(&self, state: &mut __H)[src]
default fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
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]
Auto Trait Implementations
Blanket Implementations
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T> From for T[src]
impl<T, U> TryFrom for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,