pub struct CallSite {
pub address: u64,
pub instruction_bytes: Vec<u8>,
pub context: CallContext,
}Expand description
Individual call site information
Fields§
§address: u64Address of the call instruction
instruction_bytes: Vec<u8>Raw instruction bytes
context: CallContextCall context
Trait Implementations§
Source§impl<'de> Deserialize<'de> for CallSite
impl<'de> Deserialize<'de> for CallSite
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CallSite
impl RefUnwindSafe for CallSite
impl Send for CallSite
impl Sync for CallSite
impl Unpin 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