Enum cranelift_codegen::isa::unwind::UnwindInfo
source · #[non_exhaustive]
pub enum UnwindInfo {
WindowsX64(UnwindInfo),
SystemV(UnwindInfo),
}
Expand description
Represents unwind information for a single function.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
WindowsX64(UnwindInfo)
Windows x64 ABI unwind information.
SystemV(UnwindInfo)
System V ABI unwind information.
Trait Implementations§
source§impl Clone for UnwindInfo
impl Clone for UnwindInfo
source§fn clone(&self) -> UnwindInfo
fn clone(&self) -> UnwindInfo
Returns a copy of the value. Read more
1.0.0 · 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 UnwindInfo
impl Debug for UnwindInfo
source§impl PartialEq<UnwindInfo> for UnwindInfo
impl PartialEq<UnwindInfo> for UnwindInfo
source§fn eq(&self, other: &UnwindInfo) -> bool
fn eq(&self, other: &UnwindInfo) -> bool
impl Eq for UnwindInfo
impl StructuralEq for UnwindInfo
impl StructuralPartialEq for UnwindInfo
Auto Trait Implementations§
impl RefUnwindSafe for UnwindInfo
impl Send for UnwindInfo
impl Sync for UnwindInfo
impl Unpin for UnwindInfo
impl UnwindSafe for UnwindInfo
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.