pub struct DataFlowVarnode {
pub id: String,
pub kind: String,
pub variable_id: Option<String>,
pub varnode: VarnodeInfo,
}Expand description
Data-flow varnode node.
Fields§
§id: String§kind: String§variable_id: Option<String>§varnode: VarnodeInfoTrait Implementations§
Source§impl Clone for DataFlowVarnode
impl Clone for DataFlowVarnode
Source§fn clone(&self) -> DataFlowVarnode
fn clone(&self) -> DataFlowVarnode
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 DataFlowVarnode
impl Debug for DataFlowVarnode
Source§impl<'de> Deserialize<'de> for DataFlowVarnode
impl<'de> Deserialize<'de> for DataFlowVarnode
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
Source§impl PartialEq for DataFlowVarnode
impl PartialEq for DataFlowVarnode
Source§fn eq(&self, other: &DataFlowVarnode) -> bool
fn eq(&self, other: &DataFlowVarnode) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DataFlowVarnode
impl Serialize for DataFlowVarnode
impl Eq for DataFlowVarnode
impl StructuralPartialEq for DataFlowVarnode
Auto Trait Implementations§
impl Freeze for DataFlowVarnode
impl RefUnwindSafe for DataFlowVarnode
impl Send for DataFlowVarnode
impl Sync for DataFlowVarnode
impl Unpin for DataFlowVarnode
impl UnsafeUnpin for DataFlowVarnode
impl UnwindSafe for DataFlowVarnode
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