pub struct Assembled {
pub text: Text,
pub lines: Vec<Vec<Row>>,
}Expand description
A text section and, when the build asked for it, where each instruction in it came from.
Fields§
§text: TextThe instructions, and what the linker has to be told about them.
lines: Vec<Vec<Row>>One list per function of Text::funcs, in the same order, and empty throughout in a
build that asked for no debug information.
Trait Implementations§
impl Eq for Assembled
impl StructuralPartialEq for Assembled
Auto Trait Implementations§
impl Freeze for Assembled
impl RefUnwindSafe for Assembled
impl Send for Assembled
impl Sync for Assembled
impl Unpin for Assembled
impl UnsafeUnpin for Assembled
impl UnwindSafe for Assembled
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.