Struct llvm_mapper::unroll::UnrolledRecord [−][src]
pub struct UnrolledRecord(_);
Expand description
An “unrolled” record. This is internally indistinguishable from a raw bitstream
Record
, but is newtyped to enforce proper
isolation of concerns.
Implementations
Attempt to pull a UTF-8 string from this record’s fields.
Strings are always the last fields in a record, so only the start index is required.
Attempt to pull a blob of bytes from this record’s fields.
Blobs are always the last fields in a record, so only the start index is required.
Returns a reference to this record’s fields.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for UnrolledRecord
impl Send for UnrolledRecord
impl Sync for UnrolledRecord
impl Unpin for UnrolledRecord
impl UnwindSafe for UnrolledRecord
Blanket Implementations
Mutably borrows from an owned value. Read more