Struct pdb::RawString [] [src]

pub struct RawString<'b>(_);

RawString refers to a &[u8] that physically resides somewhere inside a PDB data structure.

A RawString may not be valid UTF-8.

Methods

impl<'b> RawString<'b>
[src]

Return the raw bytes of this string, as found in the PDB file.

Return the length of this string in bytes.

Returns a boolean indicating if this string is empty.

Returns a UTF-8 String, substituting in replacement characters as needed.

This uses String::from_utf8_lossy() and thus avoids copying in cases where the original string was valid UTF-8. This is the expected case for strings that appear in PDB files, since they are almost always composed of printable 7-bit ASCII characters.

Trait Implementations

impl<'b> Clone for RawString<'b>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<'b> PartialEq for RawString<'b>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<'b> Eq for RawString<'b>
[src]

impl<'b> Debug for RawString<'b>
[src]

Formats the value using the given formatter.

impl<'b> Display for RawString<'b>
[src]

Formats the value using the given formatter. Read more

impl<'b> From<&'b str> for RawString<'b>
[src]

Performs the conversion.

impl<'b> From<&'b [u8]> for RawString<'b>
[src]

Performs the conversion.