pub enum UnresolvedCall {
IndirectTable,
ExternalImport,
NativeIndirect,
MissingRelocation,
}Expand description
A conservative reason a call edge has no direct target.
Variants§
IndirectTable
A WebAssembly indirect call whose possible targets require table flow.
ExternalImport
A direct call whose target is imported rather than defined in this artifact, so there is no local symbol fingerprint to reference.
NativeIndirect
A native indirect call through a register or memory location.
MissingRelocation
A relocation or symbol target was unavailable.
Trait Implementations§
Source§impl Clone for UnresolvedCall
impl Clone for UnresolvedCall
Source§fn clone(&self) -> UnresolvedCall
fn clone(&self) -> UnresolvedCall
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 moreimpl Copy for UnresolvedCall
Source§impl Debug for UnresolvedCall
impl Debug for UnresolvedCall
Source§impl<'de> Deserialize<'de> for UnresolvedCall
impl<'de> Deserialize<'de> for UnresolvedCall
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 UnresolvedCall
Source§impl PartialEq for UnresolvedCall
impl PartialEq for UnresolvedCall
Source§impl Serialize for UnresolvedCall
impl Serialize for UnresolvedCall
impl StructuralPartialEq for UnresolvedCall
Auto Trait Implementations§
impl Freeze for UnresolvedCall
impl RefUnwindSafe for UnresolvedCall
impl Send for UnresolvedCall
impl Sync for UnresolvedCall
impl Unpin for UnresolvedCall
impl UnsafeUnpin for UnresolvedCall
impl UnwindSafe for UnresolvedCall
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.