AbiValue

Enum AbiValue 

Source
pub enum AbiValue {
    C {
        unwind: bool,
    },
    System {
        unwind: bool,
    },
    Rust,
    Aapcs {
        unwind: bool,
    },
    Cdecl {
        unwind: bool,
    },
    Stdcall {
        unwind: bool,
    },
    Fastcall {
        unwind: bool,
    },
    Thiscall {
        unwind: bool,
    },
    Vectorcall {
        unwind: bool,
    },
    SysV64 {
        unwind: bool,
    },
    Win64 {
        unwind: bool,
    },
    EfiApi,
}
Expand description

The abi or calling convention of a function pointer.

Variants§

§

C

This is the same as extern fn foo(); whatever the default your C compiler supports.

Fields

§unwind: bool

Whether unwinding across this abi boundary is allowed (*-unwind).

§

System

Usually the same as extern "C", except on Win32, in which case it’s "stdcall", or what you should use to link to the Windows API itself.

Fields

§unwind: bool

Whether unwinding across this abi boundary is allowed (*-unwind).

§

Rust

The default abi when you write a normal fn foo() in any Rust code.

§

Aapcs

The default for ARM.

Fields

§unwind: bool

Whether unwinding across this abi boundary is allowed (*-unwind).

§

Cdecl

The default for x86_32 C code.

Fields

§unwind: bool

Whether unwinding across this abi boundary is allowed (*-unwind).

§

Stdcall

The default for the Win32 API on x86_32.

Fields

§unwind: bool

Whether unwinding across this abi boundary is allowed (*-unwind).

§

Fastcall

The fastcall abi.

Fields

§unwind: bool

Whether unwinding across this abi boundary is allowed (*-unwind).

§

Thiscall

The Windows C++ abi.

Fields

§unwind: bool

Whether unwinding across this abi boundary is allowed (*-unwind).

§

Vectorcall

The vectorcall abi.

Fields

§unwind: bool

Whether unwinding across this abi boundary is allowed (*-unwind).

§

SysV64

The default for C code on non-Windows x86_64.

Fields

§unwind: bool

Whether unwinding across this abi boundary is allowed (*-unwind).

§

Win64

The default for C code on x86_64 Windows.

Fields

§unwind: bool

Whether unwinding across this abi boundary is allowed (*-unwind).

§

EfiApi

UEFI ABI, usually an alias of C, but sometimes an arch-specific alias.

Implementations§

Source§

impl AbiValue

Source

pub const fn allows_unwind(&self) -> bool

Returns whether unwinding after a panic is allowed inside the called function.

Source

pub fn canonize(self, has_c_varargs: bool) -> Option<AbiValue>

Canonicalize this abi for the current target.

Maps aliases (e.g. system, cdecl) to the concrete abi actually used on the current OS/architecture, following Rust compiler rules.

Returns None if this abi is not supported on the current target.

Source§

impl AbiValue

Source

pub const fn to_str(&self) -> &'static str

Returns the string representation of this abi.

Source

pub const fn from_str_const(conv: &'static str) -> Option<Self>

The same as the FromStr implementation, but (only!) for use in const contexts.

Trait Implementations§

Source§

impl Clone for AbiValue

Source§

fn clone(&self) -> AbiValue

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for AbiValue

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for AbiValue

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl FromStr for AbiValue

Source§

type Err = ()

The associated error which can be returned from parsing.
Source§

fn from_str(s: &str) -> Result<Self, Self::Err>

Parses a string s to return a value of this type. Read more
Source§

impl Hash for AbiValue

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl Ord for AbiValue

Source§

fn cmp(&self, other: &AbiValue) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for AbiValue

Source§

fn eq(&self, other: &AbiValue) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for AbiValue

Source§

fn partial_cmp(&self, other: &AbiValue) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl Copy for AbiValue

Source§

impl Eq for AbiValue

Source§

impl StructuralPartialEq for AbiValue

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DropFlavorWrapper<T> for T

Source§

type Flavor = MayDrop

The DropFlavor that wraps T into Self
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, W> HasTypeWitness<W> for T
where W: MakeTypeWitness<Arg = T>, T: ?Sized,

Source§

const WITNESS: W = W::MAKE

A constant of the type witness
Source§

impl<T> Identity for T
where T: ?Sized,

Source§

const TYPE_EQ: TypeEq<T, <T as Identity>::Type> = TypeEq::NEW

Proof that Self is the same type as Self::Type, provides methods for casting between Self and Self::Type.
Source§

type Type = T

The same type as Self, used to emulate type equality bounds (T == U) with associated type equality constraints (T: Identity<Type = U>).
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.