pub struct CallSite {
pub caller_id: u64,
pub callee_id: u64,
pub span: Span,
}Expand description
A call site in the call graph.
Fields§
§caller_id: u64The calling unit.
callee_id: u64The called unit.
span: SpanLocation of the call.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CallSite
impl RefUnwindSafe for CallSite
impl Send for CallSite
impl Sync for CallSite
impl Unpin for CallSite
impl UnsafeUnpin for CallSite
impl UnwindSafe for CallSite
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