[][src]Struct wasi_types::Fd

#[repr(C)]
pub struct Fd(_);

A file descriptor number. As in POSIX, 0, 1, and 2 are stdin, stdout, and stderr, respectively. File descriptors are not guaranteed to be contiguous or allocated in ascending order. Information about a file descriptor may be obtained through fd_prestat_get.

Trait Implementations

impl Eq for Fd[src]

impl Clone for Fd[src]

impl PartialEq<Fd> for Fd[src]

impl From<u8> for Fd[src]

impl From<u16> for Fd[src]

impl From<u32> for Fd[src]

impl From<Fd> for u32[src]

impl From<Fd> for u64[src]

impl Copy for Fd[src]

impl Debug for Fd[src]

Auto Trait Implementations

impl Send for Fd

impl Unpin for Fd

impl Sync for Fd

impl UnwindSafe for Fd

impl RefUnwindSafe for Fd

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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

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

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