SystemUnwind

Struct SystemUnwind 

Source
pub struct SystemUnwind;
Expand description

Type-level marker for the system-unwind abi.

Trait Implementations§

Source§

impl Abi for SystemUnwind

Source§

const STR: &'static str = "system-unwind"

The exact abi string used in extern "...".
Source§

const VALUE: AbiValue

The runtime Abi that represent this marker type.
Source§

const ALLOWS_UNWIND: bool = _

The runtime Abi that represent this marker type.
Source§

impl<Output> BuildFn<Safe, SystemUnwind, Output> for ()

Source§

type F = extern "system-unwind" fn() -> Output

The resulting function-pointer type.
Source§

impl<Output, A> BuildFn<Safe, SystemUnwind, Output> for (A,)

Source§

type F = extern "system-unwind" fn(A) -> Output

The resulting function-pointer type.
Source§

impl<Output, A, B> BuildFn<Safe, SystemUnwind, Output> for (A, B)

Source§

type F = extern "system-unwind" fn(A, B) -> Output

The resulting function-pointer type.
Source§

impl<Output, A, B, C> BuildFn<Safe, SystemUnwind, Output> for (A, B, C)

Source§

type F = extern "system-unwind" fn(A, B, C) -> Output

The resulting function-pointer type.
Source§

impl<Output, A, B, C, D> BuildFn<Safe, SystemUnwind, Output> for (A, B, C, D)

Source§

type F = extern "system-unwind" fn(A, B, C, D) -> Output

The resulting function-pointer type.
Source§

impl<Output, A, B, C, D, E> BuildFn<Safe, SystemUnwind, Output> for (A, B, C, D, E)

Source§

type F = extern "system-unwind" fn(A, B, C, D, E) -> Output

The resulting function-pointer type.
Source§

impl<Output, A, B, C, D, E, F> BuildFn<Safe, SystemUnwind, Output> for (A, B, C, D, E, F)

Source§

type F = extern "system-unwind" fn(A, B, C, D, E, F) -> Output

The resulting function-pointer type.
Source§

impl<Output> BuildFn<Unsafe, SystemUnwind, Output> for ()

Source§

type F = unsafe extern "system-unwind" fn() -> Output

The resulting function-pointer type.
Source§

impl<Output, A> BuildFn<Unsafe, SystemUnwind, Output> for (A,)

Source§

type F = unsafe extern "system-unwind" fn(A) -> Output

The resulting function-pointer type.
Source§

impl<Output, A, B> BuildFn<Unsafe, SystemUnwind, Output> for (A, B)

Source§

type F = unsafe extern "system-unwind" fn(A, B) -> Output

The resulting function-pointer type.
Source§

impl<Output, A, B, C> BuildFn<Unsafe, SystemUnwind, Output> for (A, B, C)

Source§

type F = unsafe extern "system-unwind" fn(A, B, C) -> Output

The resulting function-pointer type.
Source§

impl<Output, A, B, C, D> BuildFn<Unsafe, SystemUnwind, Output> for (A, B, C, D)

Source§

type F = unsafe extern "system-unwind" fn(A, B, C, D) -> Output

The resulting function-pointer type.
Source§

impl<Output, A, B, C, D, E> BuildFn<Unsafe, SystemUnwind, Output> for (A, B, C, D, E)

Source§

type F = unsafe extern "system-unwind" fn(A, B, C, D, E) -> Output

The resulting function-pointer type.
Source§

impl<Output, A, B, C, D, E, F> BuildFn<Unsafe, SystemUnwind, Output> for (A, B, C, D, E, F)

Source§

type F = unsafe extern "system-unwind" fn(A, B, C, D, E, F) -> Output

The resulting function-pointer type.
Source§

impl Clone for SystemUnwind

Source§

fn clone(&self) -> SystemUnwind

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 SystemUnwind

Source§

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

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

impl Hash for SystemUnwind

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 PartialEq for SystemUnwind

Source§

fn eq(&self, other: &SystemUnwind) -> 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<Output> WithAbiImpl<SystemUnwind> for extern "C" fn() -> Output

Source§

type F = extern "system-unwind" fn() -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A> WithAbiImpl<SystemUnwind> for extern "C" fn(A) -> Output

Source§

type F = extern "system-unwind" fn(A) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B> WithAbiImpl<SystemUnwind> for extern "C" fn(A, B) -> Output

Source§

type F = extern "system-unwind" fn(A, B) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C> WithAbiImpl<SystemUnwind> for extern "C" fn(A, B, C) -> Output

Source§

type F = extern "system-unwind" fn(A, B, C) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D> WithAbiImpl<SystemUnwind> for extern "C" fn(A, B, C, D) -> Output

Source§

type F = extern "system-unwind" fn(A, B, C, D) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D, E> WithAbiImpl<SystemUnwind> for extern "C" fn(A, B, C, D, E) -> Output

Source§

type F = extern "system-unwind" fn(A, B, C, D, E) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D, E, F> WithAbiImpl<SystemUnwind> for extern "C" fn(A, B, C, D, E, F) -> Output

Source§

type F = extern "system-unwind" fn(A, B, C, D, E, F) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output> WithAbiImpl<SystemUnwind> for extern "C-unwind" fn() -> Output

Source§

type F = extern "system-unwind" fn() -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A> WithAbiImpl<SystemUnwind> for extern "C-unwind" fn(A) -> Output

Source§

type F = extern "system-unwind" fn(A) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B> WithAbiImpl<SystemUnwind> for extern "C-unwind" fn(A, B) -> Output

Source§

type F = extern "system-unwind" fn(A, B) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C> WithAbiImpl<SystemUnwind> for extern "C-unwind" fn(A, B, C) -> Output

Source§

type F = extern "system-unwind" fn(A, B, C) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D> WithAbiImpl<SystemUnwind> for extern "C-unwind" fn(A, B, C, D) -> Output

Source§

type F = extern "system-unwind" fn(A, B, C, D) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D, E> WithAbiImpl<SystemUnwind> for extern "C-unwind" fn(A, B, C, D, E) -> Output

Source§

type F = extern "system-unwind" fn(A, B, C, D, E) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D, E, F> WithAbiImpl<SystemUnwind> for extern "C-unwind" fn(A, B, C, D, E, F) -> Output

Source§

type F = extern "system-unwind" fn(A, B, C, D, E, F) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output> WithAbiImpl<SystemUnwind> for extern "efiapi" fn() -> Output

Source§

type F = extern "system-unwind" fn() -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A> WithAbiImpl<SystemUnwind> for extern "efiapi" fn(A) -> Output

Source§

type F = extern "system-unwind" fn(A) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B> WithAbiImpl<SystemUnwind> for extern "efiapi" fn(A, B) -> Output

Source§

type F = extern "system-unwind" fn(A, B) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C> WithAbiImpl<SystemUnwind> for extern "efiapi" fn(A, B, C) -> Output

Source§

type F = extern "system-unwind" fn(A, B, C) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D> WithAbiImpl<SystemUnwind> for extern "efiapi" fn(A, B, C, D) -> Output

Source§

type F = extern "system-unwind" fn(A, B, C, D) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D, E> WithAbiImpl<SystemUnwind> for extern "efiapi" fn(A, B, C, D, E) -> Output

Source§

type F = extern "system-unwind" fn(A, B, C, D, E) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D, E, F> WithAbiImpl<SystemUnwind> for extern "efiapi" fn(A, B, C, D, E, F) -> Output

Source§

type F = extern "system-unwind" fn(A, B, C, D, E, F) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output> WithAbiImpl<SystemUnwind> for extern "system" fn() -> Output

Source§

type F = extern "system-unwind" fn() -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A> WithAbiImpl<SystemUnwind> for extern "system" fn(A) -> Output

Source§

type F = extern "system-unwind" fn(A) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B> WithAbiImpl<SystemUnwind> for extern "system" fn(A, B) -> Output

Source§

type F = extern "system-unwind" fn(A, B) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C> WithAbiImpl<SystemUnwind> for extern "system" fn(A, B, C) -> Output

Source§

type F = extern "system-unwind" fn(A, B, C) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D> WithAbiImpl<SystemUnwind> for extern "system" fn(A, B, C, D) -> Output

Source§

type F = extern "system-unwind" fn(A, B, C, D) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D, E> WithAbiImpl<SystemUnwind> for extern "system" fn(A, B, C, D, E) -> Output

Source§

type F = extern "system-unwind" fn(A, B, C, D, E) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D, E, F> WithAbiImpl<SystemUnwind> for extern "system" fn(A, B, C, D, E, F) -> Output

Source§

type F = extern "system-unwind" fn(A, B, C, D, E, F) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output> WithAbiImpl<SystemUnwind> for extern "system-unwind" fn() -> Output

Source§

type F = extern "system-unwind" fn() -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A> WithAbiImpl<SystemUnwind> for extern "system-unwind" fn(A) -> Output

Source§

type F = extern "system-unwind" fn(A) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B> WithAbiImpl<SystemUnwind> for extern "system-unwind" fn(A, B) -> Output

Source§

type F = extern "system-unwind" fn(A, B) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C> WithAbiImpl<SystemUnwind> for extern "system-unwind" fn(A, B, C) -> Output

Source§

type F = extern "system-unwind" fn(A, B, C) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D> WithAbiImpl<SystemUnwind> for extern "system-unwind" fn(A, B, C, D) -> Output

Source§

type F = extern "system-unwind" fn(A, B, C, D) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D, E> WithAbiImpl<SystemUnwind> for extern "system-unwind" fn(A, B, C, D, E) -> Output

Source§

type F = extern "system-unwind" fn(A, B, C, D, E) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D, E, F> WithAbiImpl<SystemUnwind> for extern "system-unwind" fn(A, B, C, D, E, F) -> Output

Source§

type F = extern "system-unwind" fn(A, B, C, D, E, F) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output> WithAbiImpl<SystemUnwind> for extern "sysv64" fn() -> Output

Source§

type F = extern "system-unwind" fn() -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A> WithAbiImpl<SystemUnwind> for extern "sysv64" fn(A) -> Output

Source§

type F = extern "system-unwind" fn(A) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B> WithAbiImpl<SystemUnwind> for extern "sysv64" fn(A, B) -> Output

Source§

type F = extern "system-unwind" fn(A, B) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C> WithAbiImpl<SystemUnwind> for extern "sysv64" fn(A, B, C) -> Output

Source§

type F = extern "system-unwind" fn(A, B, C) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D> WithAbiImpl<SystemUnwind> for extern "sysv64" fn(A, B, C, D) -> Output

Source§

type F = extern "system-unwind" fn(A, B, C, D) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D, E> WithAbiImpl<SystemUnwind> for extern "sysv64" fn(A, B, C, D, E) -> Output

Source§

type F = extern "system-unwind" fn(A, B, C, D, E) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D, E, F> WithAbiImpl<SystemUnwind> for extern "sysv64" fn(A, B, C, D, E, F) -> Output

Source§

type F = extern "system-unwind" fn(A, B, C, D, E, F) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output> WithAbiImpl<SystemUnwind> for extern "sysv64-unwind" fn() -> Output

Source§

type F = extern "system-unwind" fn() -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A> WithAbiImpl<SystemUnwind> for extern "sysv64-unwind" fn(A) -> Output

Source§

type F = extern "system-unwind" fn(A) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B> WithAbiImpl<SystemUnwind> for extern "sysv64-unwind" fn(A, B) -> Output

Source§

type F = extern "system-unwind" fn(A, B) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C> WithAbiImpl<SystemUnwind> for extern "sysv64-unwind" fn(A, B, C) -> Output

Source§

type F = extern "system-unwind" fn(A, B, C) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D> WithAbiImpl<SystemUnwind> for extern "sysv64-unwind" fn(A, B, C, D) -> Output

Source§

type F = extern "system-unwind" fn(A, B, C, D) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D, E> WithAbiImpl<SystemUnwind> for extern "sysv64-unwind" fn(A, B, C, D, E) -> Output

Source§

type F = extern "system-unwind" fn(A, B, C, D, E) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D, E, F> WithAbiImpl<SystemUnwind> for extern "sysv64-unwind" fn(A, B, C, D, E, F) -> Output

Source§

type F = extern "system-unwind" fn(A, B, C, D, E, F) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output> WithAbiImpl<SystemUnwind> for fn() -> Output

Source§

type F = extern "system-unwind" fn() -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A> WithAbiImpl<SystemUnwind> for fn(A) -> Output

Source§

type F = extern "system-unwind" fn(A) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B> WithAbiImpl<SystemUnwind> for fn(A, B) -> Output

Source§

type F = extern "system-unwind" fn(A, B) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C> WithAbiImpl<SystemUnwind> for fn(A, B, C) -> Output

Source§

type F = extern "system-unwind" fn(A, B, C) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D> WithAbiImpl<SystemUnwind> for fn(A, B, C, D) -> Output

Source§

type F = extern "system-unwind" fn(A, B, C, D) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D, E> WithAbiImpl<SystemUnwind> for fn(A, B, C, D, E) -> Output

Source§

type F = extern "system-unwind" fn(A, B, C, D, E) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D, E, F> WithAbiImpl<SystemUnwind> for fn(A, B, C, D, E, F) -> Output

Source§

type F = extern "system-unwind" fn(A, B, C, D, E, F) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output> WithAbiImpl<SystemUnwind> for unsafe extern "C" fn() -> Output

Source§

type F = unsafe extern "system-unwind" fn() -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A> WithAbiImpl<SystemUnwind> for unsafe extern "C" fn(A) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B> WithAbiImpl<SystemUnwind> for unsafe extern "C" fn(A, B) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A, B) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C> WithAbiImpl<SystemUnwind> for unsafe extern "C" fn(A, B, C) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A, B, C) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D> WithAbiImpl<SystemUnwind> for unsafe extern "C" fn(A, B, C, D) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A, B, C, D) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D, E> WithAbiImpl<SystemUnwind> for unsafe extern "C" fn(A, B, C, D, E) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A, B, C, D, E) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D, E, F> WithAbiImpl<SystemUnwind> for unsafe extern "C" fn(A, B, C, D, E, F) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A, B, C, D, E, F) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output> WithAbiImpl<SystemUnwind> for unsafe extern "C-unwind" fn() -> Output

Source§

type F = unsafe extern "system-unwind" fn() -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A> WithAbiImpl<SystemUnwind> for unsafe extern "C-unwind" fn(A) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B> WithAbiImpl<SystemUnwind> for unsafe extern "C-unwind" fn(A, B) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A, B) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C> WithAbiImpl<SystemUnwind> for unsafe extern "C-unwind" fn(A, B, C) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A, B, C) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D> WithAbiImpl<SystemUnwind> for unsafe extern "C-unwind" fn(A, B, C, D) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A, B, C, D) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D, E> WithAbiImpl<SystemUnwind> for unsafe extern "C-unwind" fn(A, B, C, D, E) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A, B, C, D, E) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D, E, F> WithAbiImpl<SystemUnwind> for unsafe extern "C-unwind" fn(A, B, C, D, E, F) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A, B, C, D, E, F) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output> WithAbiImpl<SystemUnwind> for unsafe extern "efiapi" fn() -> Output

Source§

type F = unsafe extern "system-unwind" fn() -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A> WithAbiImpl<SystemUnwind> for unsafe extern "efiapi" fn(A) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B> WithAbiImpl<SystemUnwind> for unsafe extern "efiapi" fn(A, B) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A, B) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C> WithAbiImpl<SystemUnwind> for unsafe extern "efiapi" fn(A, B, C) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A, B, C) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D> WithAbiImpl<SystemUnwind> for unsafe extern "efiapi" fn(A, B, C, D) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A, B, C, D) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D, E> WithAbiImpl<SystemUnwind> for unsafe extern "efiapi" fn(A, B, C, D, E) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A, B, C, D, E) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D, E, F> WithAbiImpl<SystemUnwind> for unsafe extern "efiapi" fn(A, B, C, D, E, F) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A, B, C, D, E, F) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output> WithAbiImpl<SystemUnwind> for unsafe extern "system" fn() -> Output

Source§

type F = unsafe extern "system-unwind" fn() -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A> WithAbiImpl<SystemUnwind> for unsafe extern "system" fn(A) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B> WithAbiImpl<SystemUnwind> for unsafe extern "system" fn(A, B) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A, B) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C> WithAbiImpl<SystemUnwind> for unsafe extern "system" fn(A, B, C) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A, B, C) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D> WithAbiImpl<SystemUnwind> for unsafe extern "system" fn(A, B, C, D) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A, B, C, D) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D, E> WithAbiImpl<SystemUnwind> for unsafe extern "system" fn(A, B, C, D, E) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A, B, C, D, E) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D, E, F> WithAbiImpl<SystemUnwind> for unsafe extern "system" fn(A, B, C, D, E, F) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A, B, C, D, E, F) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output> WithAbiImpl<SystemUnwind> for unsafe extern "system-unwind" fn() -> Output

Source§

type F = unsafe extern "system-unwind" fn() -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A> WithAbiImpl<SystemUnwind> for unsafe extern "system-unwind" fn(A) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B> WithAbiImpl<SystemUnwind> for unsafe extern "system-unwind" fn(A, B) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A, B) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C> WithAbiImpl<SystemUnwind> for unsafe extern "system-unwind" fn(A, B, C) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A, B, C) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D> WithAbiImpl<SystemUnwind> for unsafe extern "system-unwind" fn(A, B, C, D) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A, B, C, D) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D, E> WithAbiImpl<SystemUnwind> for unsafe extern "system-unwind" fn(A, B, C, D, E) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A, B, C, D, E) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D, E, F> WithAbiImpl<SystemUnwind> for unsafe extern "system-unwind" fn(A, B, C, D, E, F) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A, B, C, D, E, F) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output> WithAbiImpl<SystemUnwind> for unsafe extern "sysv64" fn() -> Output

Source§

type F = unsafe extern "system-unwind" fn() -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A> WithAbiImpl<SystemUnwind> for unsafe extern "sysv64" fn(A) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B> WithAbiImpl<SystemUnwind> for unsafe extern "sysv64" fn(A, B) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A, B) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C> WithAbiImpl<SystemUnwind> for unsafe extern "sysv64" fn(A, B, C) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A, B, C) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D> WithAbiImpl<SystemUnwind> for unsafe extern "sysv64" fn(A, B, C, D) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A, B, C, D) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D, E> WithAbiImpl<SystemUnwind> for unsafe extern "sysv64" fn(A, B, C, D, E) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A, B, C, D, E) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D, E, F> WithAbiImpl<SystemUnwind> for unsafe extern "sysv64" fn(A, B, C, D, E, F) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A, B, C, D, E, F) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output> WithAbiImpl<SystemUnwind> for unsafe extern "sysv64-unwind" fn() -> Output

Source§

type F = unsafe extern "system-unwind" fn() -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A> WithAbiImpl<SystemUnwind> for unsafe extern "sysv64-unwind" fn(A) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B> WithAbiImpl<SystemUnwind> for unsafe extern "sysv64-unwind" fn(A, B) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A, B) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C> WithAbiImpl<SystemUnwind> for unsafe extern "sysv64-unwind" fn(A, B, C) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A, B, C) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D> WithAbiImpl<SystemUnwind> for unsafe extern "sysv64-unwind" fn(A, B, C, D) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A, B, C, D) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D, E> WithAbiImpl<SystemUnwind> for unsafe extern "sysv64-unwind" fn(A, B, C, D, E) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A, B, C, D, E) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D, E, F> WithAbiImpl<SystemUnwind> for unsafe extern "sysv64-unwind" fn(A, B, C, D, E, F) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A, B, C, D, E, F) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output> WithAbiImpl<SystemUnwind> for unsafe fn() -> Output

Source§

type F = unsafe extern "system-unwind" fn() -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A> WithAbiImpl<SystemUnwind> for unsafe fn(A) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B> WithAbiImpl<SystemUnwind> for unsafe fn(A, B) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A, B) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C> WithAbiImpl<SystemUnwind> for unsafe fn(A, B, C) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A, B, C) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D> WithAbiImpl<SystemUnwind> for unsafe fn(A, B, C, D) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A, B, C, D) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D, E> WithAbiImpl<SystemUnwind> for unsafe fn(A, B, C, D, E) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A, B, C, D, E) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl<Output, A, B, C, D, E, F> WithAbiImpl<SystemUnwind> for unsafe fn(A, B, C, D, E, F) -> Output

Source§

type F = unsafe extern "system-unwind" fn(A, B, C, D, E, F) -> Output

The function pointer type with the requested abi (preserving all other properties).
Source§

impl Copy for SystemUnwind

Source§

impl Eq for SystemUnwind

Source§

impl StructuralPartialEq for SystemUnwind

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.