Enum gimli::write::LineString [−][src]
pub enum LineString {
String(Vec<u8>),
StringRef(StringId),
LineStringRef(LineStringId),
}
Expand description
A string value for use in defining paths in line number programs.
Variants
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.
Tuple Fields of StringRef
0: StringId
LineStringRef(LineStringId)
A reference to a string in the .debug_line_str
section.
Tuple Fields of LineStringRef
0: LineStringId
Implementations
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
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
Mutably borrows from an owned value. Read more
Compare self to key
and return true
if they are equal.