pub struct GraphEvent { /* private fields */ }Implementations§
Source§impl GraphEvent
impl GraphEvent
Sourcepub fn from_axiomatic<'a, B: BV>(
ev: &'a AxEvent<'_, B>,
objdump: &str,
rw_values: &mut HashMap<String, String>,
) -> Self
pub fn from_axiomatic<'a, B: BV>( ev: &'a AxEvent<'_, B>, objdump: &str, rw_values: &mut HashMap<String, String>, ) -> Self
Create an event to display in a user-visible graph from an underlying axiomatic event. For display, we use the objdump output to find the human-readable assembly instruction, and get values read/written by memory events as an event name -> read/write description map.
Trait Implementations§
Source§impl Clone for GraphEvent
impl Clone for GraphEvent
Source§fn clone(&self) -> GraphEvent
fn clone(&self) -> GraphEvent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GraphEvent
impl Debug for GraphEvent
Source§impl<'de> Deserialize<'de> for GraphEvent
impl<'de> Deserialize<'de> for GraphEvent
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 GraphEvent
impl RefUnwindSafe for GraphEvent
impl Send for GraphEvent
impl Sync for GraphEvent
impl Unpin for GraphEvent
impl UnsafeUnpin for GraphEvent
impl UnwindSafe for GraphEvent
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