SysV64

Struct SysV64 

Source
pub struct SysV64;
Expand description

Type-level marker for the sysv64 abi.

Trait Implementations§

Source§

impl Abi for SysV64

Source§

const STR: &'static str = "sysv64"

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, SysV64, Output> for ()

Source§

type F = extern "sysv64" fn() -> Output

The resulting function-pointer type.
Source§

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

Source§

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

The resulting function-pointer type.
Source§

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

Source§

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

The resulting function-pointer type.
Source§

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

Source§

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

The resulting function-pointer type.
Source§

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

Source§

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

The resulting function-pointer type.
Source§

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

Source§

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

The resulting function-pointer type.
Source§

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

Source§

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

The resulting function-pointer type.
Source§

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

Source§

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

The resulting function-pointer type.
Source§

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

Source§

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

The resulting function-pointer type.
Source§

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

Source§

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

The resulting function-pointer type.
Source§

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

Source§

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

The resulting function-pointer type.
Source§

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

Source§

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

The resulting function-pointer type.
Source§

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

Source§

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

The resulting function-pointer type.
Source§

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

Source§

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

The resulting function-pointer type.
Source§

impl Clone for SysV64

Source§

fn clone(&self) -> SysV64

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 SysV64

Source§

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

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

impl Hash for SysV64

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 SysV64

Source§

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

Source§

type F = extern "sysv64" fn() -> Output

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

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

Source§

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

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

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

Source§

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

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

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

Source§

type F = extern "sysv64" 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<SysV64> for extern "C" fn(A, B, C, D) -> Output

Source§

type F = extern "sysv64" 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<SysV64> for extern "C" fn(A, B, C, D, E) -> Output

Source§

type F = extern "sysv64" 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<SysV64> for extern "C" fn(A, B, C, D, E, F) -> Output

Source§

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

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

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

Source§

type F = extern "sysv64" fn() -> Output

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

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

Source§

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

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

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

Source§

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

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

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

Source§

type F = extern "sysv64" 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<SysV64> for extern "C-unwind" fn(A, B, C, D) -> Output

Source§

type F = extern "sysv64" 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<SysV64> for extern "C-unwind" fn(A, B, C, D, E) -> Output

Source§

type F = extern "sysv64" 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<SysV64> for extern "C-unwind" fn(A, B, C, D, E, F) -> Output

Source§

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

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

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

Source§

type F = extern "sysv64" fn() -> Output

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

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

Source§

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

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

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

Source§

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

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

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

Source§

type F = extern "sysv64" 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<SysV64> for extern "efiapi" fn(A, B, C, D) -> Output

Source§

type F = extern "sysv64" 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<SysV64> for extern "efiapi" fn(A, B, C, D, E) -> Output

Source§

type F = extern "sysv64" 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<SysV64> for extern "efiapi" fn(A, B, C, D, E, F) -> Output

Source§

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

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

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

Source§

type F = extern "sysv64" fn() -> Output

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

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

Source§

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

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

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

Source§

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

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

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

Source§

type F = extern "sysv64" 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<SysV64> for extern "system" fn(A, B, C, D) -> Output

Source§

type F = extern "sysv64" 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<SysV64> for extern "system" fn(A, B, C, D, E) -> Output

Source§

type F = extern "sysv64" 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<SysV64> for extern "system" fn(A, B, C, D, E, F) -> Output

Source§

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

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

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

Source§

type F = extern "sysv64" fn() -> Output

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

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

Source§

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

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

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

Source§

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

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

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

Source§

type F = extern "sysv64" 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<SysV64> for extern "system-unwind" fn(A, B, C, D) -> Output

Source§

type F = extern "sysv64" 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<SysV64> for extern "system-unwind" fn(A, B, C, D, E) -> Output

Source§

type F = extern "sysv64" 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<SysV64> for extern "system-unwind" fn(A, B, C, D, E, F) -> Output

Source§

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

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

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

Source§

type F = extern "sysv64" fn() -> Output

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

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

Source§

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

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

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

Source§

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

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

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

Source§

type F = extern "sysv64" 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<SysV64> for extern "sysv64" fn(A, B, C, D) -> Output

Source§

type F = extern "sysv64" 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<SysV64> for extern "sysv64" fn(A, B, C, D, E) -> Output

Source§

type F = extern "sysv64" 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<SysV64> for extern "sysv64" fn(A, B, C, D, E, F) -> Output

Source§

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

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

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

Source§

type F = extern "sysv64" fn() -> Output

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

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

Source§

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

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

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

Source§

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

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

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

Source§

type F = extern "sysv64" 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<SysV64> for extern "sysv64-unwind" fn(A, B, C, D) -> Output

Source§

type F = extern "sysv64" 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<SysV64> for extern "sysv64-unwind" fn(A, B, C, D, E) -> Output

Source§

type F = extern "sysv64" 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<SysV64> for extern "sysv64-unwind" fn(A, B, C, D, E, F) -> Output

Source§

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

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

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

Source§

type F = extern "sysv64" fn() -> Output

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

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

Source§

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

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

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

Source§

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

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

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

Source§

type F = extern "sysv64" 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<SysV64> for fn(A, B, C, D) -> Output

Source§

type F = extern "sysv64" 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<SysV64> for fn(A, B, C, D, E) -> Output

Source§

type F = extern "sysv64" 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<SysV64> for fn(A, B, C, D, E, F) -> Output

Source§

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

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

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

Source§

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

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

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

Source§

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

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

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

Source§

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

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

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

Source§

type F = unsafe extern "sysv64" 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<SysV64> for unsafe extern "C" fn(A, B, C, D) -> Output

Source§

type F = unsafe extern "sysv64" 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<SysV64> for unsafe extern "C" fn(A, B, C, D, E) -> Output

Source§

type F = unsafe extern "sysv64" 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<SysV64> for unsafe extern "C" fn(A, B, C, D, E, F) -> Output

Source§

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

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

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

Source§

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

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

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

Source§

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

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

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

Source§

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

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

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

Source§

type F = unsafe extern "sysv64" 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<SysV64> for unsafe extern "C-unwind" fn(A, B, C, D) -> Output

Source§

type F = unsafe extern "sysv64" 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<SysV64> for unsafe extern "C-unwind" fn(A, B, C, D, E) -> Output

Source§

type F = unsafe extern "sysv64" 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<SysV64> for unsafe extern "C-unwind" fn(A, B, C, D, E, F) -> Output

Source§

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

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

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

Source§

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

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

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

Source§

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

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

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

Source§

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

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

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

Source§

type F = unsafe extern "sysv64" 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<SysV64> for unsafe extern "efiapi" fn(A, B, C, D) -> Output

Source§

type F = unsafe extern "sysv64" 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<SysV64> for unsafe extern "efiapi" fn(A, B, C, D, E) -> Output

Source§

type F = unsafe extern "sysv64" 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<SysV64> for unsafe extern "efiapi" fn(A, B, C, D, E, F) -> Output

Source§

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

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

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

Source§

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

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

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

Source§

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

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

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

Source§

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

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

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

Source§

type F = unsafe extern "sysv64" 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<SysV64> for unsafe extern "system" fn(A, B, C, D) -> Output

Source§

type F = unsafe extern "sysv64" 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<SysV64> for unsafe extern "system" fn(A, B, C, D, E) -> Output

Source§

type F = unsafe extern "sysv64" 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<SysV64> for unsafe extern "system" fn(A, B, C, D, E, F) -> Output

Source§

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

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

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

Source§

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

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

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

Source§

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

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

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

Source§

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

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

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

Source§

type F = unsafe extern "sysv64" 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<SysV64> for unsafe extern "system-unwind" fn(A, B, C, D) -> Output

Source§

type F = unsafe extern "sysv64" 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<SysV64> for unsafe extern "system-unwind" fn(A, B, C, D, E) -> Output

Source§

type F = unsafe extern "sysv64" 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<SysV64> for unsafe extern "system-unwind" fn(A, B, C, D, E, F) -> Output

Source§

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

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

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

Source§

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

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

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

Source§

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

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

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

Source§

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

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

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

Source§

type F = unsafe extern "sysv64" 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<SysV64> for unsafe extern "sysv64" fn(A, B, C, D) -> Output

Source§

type F = unsafe extern "sysv64" 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<SysV64> for unsafe extern "sysv64" fn(A, B, C, D, E) -> Output

Source§

type F = unsafe extern "sysv64" 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<SysV64> for unsafe extern "sysv64" fn(A, B, C, D, E, F) -> Output

Source§

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

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

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

Source§

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

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

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

Source§

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

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

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

Source§

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

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

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

Source§

type F = unsafe extern "sysv64" 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<SysV64> for unsafe extern "sysv64-unwind" fn(A, B, C, D) -> Output

Source§

type F = unsafe extern "sysv64" 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<SysV64> for unsafe extern "sysv64-unwind" fn(A, B, C, D, E) -> Output

Source§

type F = unsafe extern "sysv64" 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<SysV64> for unsafe extern "sysv64-unwind" fn(A, B, C, D, E, F) -> Output

Source§

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

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

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

Source§

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

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

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

Source§

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

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

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

Source§

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

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

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

Source§

type F = unsafe extern "sysv64" 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<SysV64> for unsafe fn(A, B, C, D) -> Output

Source§

type F = unsafe extern "sysv64" 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<SysV64> for unsafe fn(A, B, C, D, E) -> Output

Source§

type F = unsafe extern "sysv64" 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<SysV64> for unsafe fn(A, B, C, D, E, F) -> Output

Source§

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

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

impl Copy for SysV64

Source§

impl Eq for SysV64

Source§

impl StructuralPartialEq for SysV64

Auto Trait Implementations§

§

impl Freeze for SysV64

§

impl RefUnwindSafe for SysV64

§

impl Send for SysV64

§

impl Sync for SysV64

§

impl Unpin for SysV64

§

impl UnwindSafe for SysV64

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.