[][src]Enum std::os::fortanix_sgx::usercalls::raw::UsercallNrs

#[repr(u64)]#[non_exhaustive]pub enum UsercallNrs {
    read,
    read_alloc,
    write,
    flush,
    close,
    bind_stream,
    accept_stream,
    connect_stream,
    launch_thread,
    exit,
    wait,
    send,
    insecure_time,
    alloc,
    free,
    async_queues,
    // some variants omitted
}
🔬 This is a nightly-only experimental API. (sgx_platform #56975)

Usercall numbers as per the ABI.

Variants (Non-exhaustive)

Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
read
🔬 This is a nightly-only experimental API. (sgx_platform #56975)
read_alloc
🔬 This is a nightly-only experimental API. (sgx_platform #56975)
write
🔬 This is a nightly-only experimental API. (sgx_platform #56975)
flush
🔬 This is a nightly-only experimental API. (sgx_platform #56975)
close
🔬 This is a nightly-only experimental API. (sgx_platform #56975)
bind_stream
🔬 This is a nightly-only experimental API. (sgx_platform #56975)
accept_stream
🔬 This is a nightly-only experimental API. (sgx_platform #56975)
connect_stream
🔬 This is a nightly-only experimental API. (sgx_platform #56975)
launch_thread
🔬 This is a nightly-only experimental API. (sgx_platform #56975)
exit
🔬 This is a nightly-only experimental API. (sgx_platform #56975)
wait
🔬 This is a nightly-only experimental API. (sgx_platform #56975)
send
🔬 This is a nightly-only experimental API. (sgx_platform #56975)
insecure_time
🔬 This is a nightly-only experimental API. (sgx_platform #56975)
alloc
🔬 This is a nightly-only experimental API. (sgx_platform #56975)
free
🔬 This is a nightly-only experimental API. (sgx_platform #56975)
async_queues
🔬 This is a nightly-only experimental API. (sgx_platform #56975)

Trait Implementations

impl Clone for Usercalls[src]

impl Copy for Usercalls[src]

impl Debug for Usercalls[src]

impl Eq for Usercalls[src]

impl Hash for Usercalls[src]

impl PartialEq<Usercalls> for Usercalls[src]

impl StructuralEq for Usercalls[src]

impl StructuralPartialEq for Usercalls[src]

Auto Trait Implementations

impl RefUnwindSafe for Usercalls

impl Send for Usercalls

impl Sync for Usercalls

impl Unpin for Usercalls

impl UnwindSafe for Usercalls

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.