pub struct CallGraph {
pub methods: Vec<MethodRef>,
pub edges: Vec<CallEdge>,
}Expand description
Call graph for a decompiled script.
Fields§
§methods: Vec<MethodRef>Known methods (manifest-defined plus synthetic internal targets).
edges: Vec<CallEdge>Call edges extracted from the instruction stream.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CallGraph
impl RefUnwindSafe for CallGraph
impl Send for CallGraph
impl Sync for CallGraph
impl Unpin for CallGraph
impl UnwindSafe for CallGraph
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