System

Struct System 

Source
pub struct System;
Expand description

Type-level marker for the system abi.

Trait Implementations§

Source§

impl Abi for System

Source§

const STR: &'static str = "system"

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

Source§

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

The resulting function-pointer type.
Source§

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

Source§

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

The resulting function-pointer type.
Source§

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

Source§

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

The resulting function-pointer type.
Source§

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

Source§

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

The resulting function-pointer type.
Source§

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

Source§

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

The resulting function-pointer type.
Source§

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

Source§

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

The resulting function-pointer type.
Source§

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

Source§

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

The resulting function-pointer type.
Source§

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

Source§

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

The resulting function-pointer type.
Source§

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

Source§

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

The resulting function-pointer type.
Source§

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

Source§

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

The resulting function-pointer type.
Source§

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

Source§

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

The resulting function-pointer type.
Source§

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

Source§

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

The resulting function-pointer type.
Source§

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

Source§

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

The resulting function-pointer type.
Source§

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

Source§

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

The resulting function-pointer type.
Source§

impl Clone for System

Source§

fn clone(&self) -> System

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 System

Source§

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

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

impl Hash for System

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 System

Source§

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

Source§

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

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

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

Source§

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

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

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

Source§

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

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

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

Source§

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

Source§

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

Source§

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

Source§

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

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

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

Source§

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

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

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

Source§

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

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

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

Source§

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

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

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

Source§

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

Source§

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

Source§

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

Source§

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

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

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

Source§

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

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

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

Source§

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

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

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

Source§

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

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

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

Source§

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

Source§

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

Source§

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

Source§

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

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

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

Source§

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

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

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

Source§

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

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

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

Source§

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

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

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

Source§

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

Source§

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

Source§

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

Source§

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

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

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

Source§

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

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

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

Source§

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

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

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

Source§

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

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

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

Source§

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

Source§

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

Source§

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

Source§

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

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

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

Source§

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

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

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

Source§

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

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

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

Source§

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

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

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

Source§

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

Source§

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

Source§

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

Source§

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

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

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

Source§

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

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

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

Source§

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

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

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

Source§

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

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

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

Source§

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

Source§

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

Source§

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

Source§

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

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

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

Source§

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

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

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

Source§

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

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

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

Source§

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

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

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

Source§

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

Source§

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

Source§

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

Source§

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

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

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

Source§

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

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

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

Source§

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

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

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

Source§

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

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

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

Source§

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

Source§

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

Source§

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

Source§

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

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

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

Source§

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

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

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

Source§

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

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

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

Source§

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

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

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

Source§

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

Source§

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

Source§

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

Source§

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

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

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

Source§

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

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

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

Source§

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

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

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

Source§

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

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

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

Source§

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

Source§

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

Source§

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

Source§

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

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

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

Source§

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

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

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

Source§

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

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

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

Source§

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

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

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

Source§

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

Source§

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

Source§

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

Source§

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

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

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

Source§

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

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

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

Source§

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

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

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

Source§

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

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

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

Source§

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

Source§

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

Source§

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

Source§

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

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

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

Source§

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

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

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

Source§

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

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

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

Source§

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

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

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

Source§

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

Source§

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

Source§

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

Source§

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

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

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

Source§

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

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

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

Source§

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

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

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

Source§

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

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

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

Source§

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

Source§

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

Source§

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

Source§

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

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

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

Source§

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

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

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

Source§

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

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

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

Source§

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

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

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

Source§

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

Source§

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

Source§

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

Source§

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

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

impl Copy for System

Source§

impl Eq for System

Source§

impl StructuralPartialEq for System

Auto Trait Implementations§

§

impl Freeze for System

§

impl RefUnwindSafe for System

§

impl Send for System

§

impl Sync for System

§

impl Unpin for System

§

impl UnwindSafe for System

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.