Struct move_bytecode_source_map::marking::StructMarking
source · [−]pub struct StructMarking {
pub fields: BTreeMap<MemberCount, 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 struct definition. Every marking can have multiple messages associated with it.
Fields
fields: BTreeMap<MemberCount, Vec<String>>
type_param_offsets: BTreeMap<usize, Vec<String>>
Implementations
sourceimpl StructMarking
impl StructMarking
pub fn new() -> Self
pub fn field(&mut self, field_index: MemberCount, message: String)
pub fn type_param(&mut self, type_param_index: usize, message: String)
Trait Implementations
sourceimpl Debug for StructMarking
impl Debug for StructMarking
sourceimpl Default for StructMarking
impl Default for StructMarking
sourcefn default() -> StructMarking
fn default() -> StructMarking
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl RefUnwindSafe for StructMarking
impl Send for StructMarking
impl Sync for StructMarking
impl Unpin for StructMarking
impl UnwindSafe for StructMarking
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