Enum gimli::write::LineString[][src]

pub enum LineString {
    String(Vec<u8>),
    StringRef(StringId),
    LineStringRef(LineStringId),
}

A string value for use in defining paths in line number programs.

Variants

String(Vec<u8>)

A slice of bytes representing a string. Must not include null bytes. Not guaranteed to be UTF-8 or anything like that.

StringRef(StringId)

A reference to a string in the .debug_str section.

LineStringRef(LineStringId)

A reference to a string in the .debug_line_str section.

Implementations

impl LineString[src]

pub fn new<T>(
    val: T,
    encoding: Encoding,
    line_strings: &mut LineStringTable
) -> Self where
    T: Into<Vec<u8>>, 
[src]

Create a LineString using the normal form for the given encoding.

Trait Implementations

impl Clone for LineString[src]

impl Debug for LineString[src]

impl Eq for LineString[src]

impl Hash for LineString[src]

impl PartialEq<LineString> for LineString[src]

impl StructuralEq for LineString[src]

impl StructuralPartialEq for LineString[src]

Auto Trait Implementations

impl RefUnwindSafe for LineString

impl Send for LineString

impl Sync for LineString

impl Unpin for LineString

impl UnwindSafe for LineString

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> CallHasher for T where
    T: Hash
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?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, 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.