[][src]Struct wasi_common::wasi::types::Riflags

#[repr(transparent)]pub struct Riflags(_);

Implementations

impl Riflags[src]

pub const RECV_PEEK: Riflags[src]

pub const RECV_WAITALL: Riflags[src]

pub const fn empty() -> Self[src]

pub const fn all() -> Self[src]

pub fn contains(&self, other: &Riflags) -> bool[src]

Trait Implementations

impl BitAnd<Riflags> for Riflags[src]

type Output = Self

The resulting type after applying the & operator.

impl BitAndAssign<Riflags> for Riflags[src]

impl BitOr<Riflags> for Riflags[src]

type Output = Self

The resulting type after applying the | operator.

impl BitOrAssign<Riflags> for Riflags[src]

impl BitXor<Riflags> for Riflags[src]

type Output = Self

The resulting type after applying the ^ operator.

impl BitXorAssign<Riflags> for Riflags[src]

impl Clone for Riflags[src]

impl Copy for Riflags[src]

impl Debug for Riflags[src]

impl Display for Riflags[src]

impl Eq for Riflags[src]

impl From<Riflags> for u16[src]

impl From<Riflags> for i32[src]

impl<'a> GuestType<'a> for Riflags[src]

impl<'a> GuestTypeTransparent<'a> for Riflags[src]

impl Hash for Riflags[src]

impl Not for Riflags[src]

type Output = Self

The resulting type after applying the ! operator.

impl PartialEq<Riflags> for Riflags[src]

impl StructuralEq for Riflags[src]

impl StructuralPartialEq for Riflags[src]

impl TryFrom<i32> for Riflags[src]

type Error = GuestError

The type returned in the event of a conversion error.

impl TryFrom<u16> for Riflags[src]

type Error = GuestError

The type returned in the event of a conversion error.

Auto Trait Implementations

impl RefUnwindSafe for Riflags

impl Send for Riflags

impl Sync for Riflags

impl Unpin for Riflags

impl UnwindSafe for Riflags

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> Instrument for T[src]

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

impl<T> Pointee for T[src]

type Pointer = u32

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.