pub struct MethodXrefs {
pub method: MethodRef,
pub locals: Vec<SlotXref>,
pub arguments: Vec<SlotXref>,
pub statics: Vec<SlotXref>,
}Expand description
Cross-references for a single method range.
Fields§
§method: MethodRefMethod containing the reads/writes.
locals: Vec<SlotXref>Local-slot references.
arguments: Vec<SlotXref>Argument-slot references.
statics: Vec<SlotXref>Static-slot references.
Trait Implementations§
Source§impl Clone for MethodXrefs
impl Clone for MethodXrefs
Source§fn clone(&self) -> MethodXrefs
fn clone(&self) -> MethodXrefs
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MethodXrefs
impl Debug for MethodXrefs
Auto Trait Implementations§
impl Freeze for MethodXrefs
impl RefUnwindSafe for MethodXrefs
impl Send for MethodXrefs
impl Sync for MethodXrefs
impl Unpin for MethodXrefs
impl UnwindSafe for MethodXrefs
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