pub enum DiscoveryKind {
Function {
reason: FunctionDiscoveryReason,
},
Block {
function: Address,
edge_kind: EdgeKind,
},
}Expand description
Whether a discovered address starts a new function or extends an existing one.
Variants§
Trait Implementations§
Source§impl Clone for DiscoveryKind
impl Clone for DiscoveryKind
Source§fn clone(&self) -> DiscoveryKind
fn clone(&self) -> DiscoveryKind
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 DiscoveryKind
impl Debug for DiscoveryKind
Source§impl<'de> Deserialize<'de> for DiscoveryKind
impl<'de> Deserialize<'de> for DiscoveryKind
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
impl Eq for DiscoveryKind
Source§impl Hash for DiscoveryKind
impl Hash for DiscoveryKind
Source§impl Ord for DiscoveryKind
impl Ord for DiscoveryKind
Source§fn cmp(&self, other: &DiscoveryKind) -> Ordering
fn cmp(&self, other: &DiscoveryKind) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§fn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
Source§impl PartialEq for DiscoveryKind
impl PartialEq for DiscoveryKind
Source§impl PartialOrd for DiscoveryKind
impl PartialOrd for DiscoveryKind
Source§impl Serialize for DiscoveryKind
impl Serialize for DiscoveryKind
impl StructuralPartialEq for DiscoveryKind
Auto Trait Implementations§
impl Freeze for DiscoveryKind
impl RefUnwindSafe for DiscoveryKind
impl Send for DiscoveryKind
impl Sync for DiscoveryKind
impl Unpin for DiscoveryKind
impl UnsafeUnpin for DiscoveryKind
impl UnwindSafe for DiscoveryKind
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