Struct move_bytecode_source_map::marking::FunctionMarking
source · [−]pub struct FunctionMarking {
pub code_offsets: BTreeMap<CodeOffset, Vec<String>>,
pub type_param_offsets: BTreeMap<usize, Vec<String>>,
}
Expand description
A data structure used to track any markings or extra information that is desired to be exposed in the disassembled function definition. Every marking can have multiple messages associated with it.
Fields
code_offsets: BTreeMap<CodeOffset, Vec<String>>
type_param_offsets: BTreeMap<usize, Vec<String>>
Implementations
sourceimpl FunctionMarking
impl FunctionMarking
pub fn new() -> Self
pub fn code_offset(&mut self, code_offset: CodeOffset, message: String)
pub fn type_param(&mut self, type_param_index: usize, message: String)
Trait Implementations
sourceimpl Debug for FunctionMarking
impl Debug for FunctionMarking
sourceimpl Default for FunctionMarking
impl Default for FunctionMarking
sourcefn default() -> FunctionMarking
fn default() -> FunctionMarking
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl RefUnwindSafe for FunctionMarking
impl Send for FunctionMarking
impl Sync for FunctionMarking
impl Unpin for FunctionMarking
impl UnwindSafe for FunctionMarking
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more