[][src]Struct libsrt_sys::SRT_EPOLL_FLAGS

#[repr(transparent)]pub struct SRT_EPOLL_FLAGS(pub c_uint);

Implementations

impl SRT_EPOLL_FLAGS[src]

pub const SRT_EPOLL_ENABLE_EMPTY: SRT_EPOLL_FLAGS[src]

This allows the EID container to be empty when calling the waiting function with infinite time. This means an infinite hangup, although a socket can be added to this EID from a separate thread.

impl SRT_EPOLL_FLAGS[src]

pub const SRT_EPOLL_ENABLE_OUTPUTCHECK: SRT_EPOLL_FLAGS[src]

This makes the waiting function check if there is output container passed to it, and report an error if it isn't. By default it is allowed that the output container is 0 size or NULL and therefore the readiness state is reported only as a number of ready sockets from return value.

Trait Implementations

impl Clone for SRT_EPOLL_FLAGS[src]

impl Copy for SRT_EPOLL_FLAGS[src]

impl Debug for SRT_EPOLL_FLAGS[src]

impl Eq for SRT_EPOLL_FLAGS[src]

impl Hash for SRT_EPOLL_FLAGS[src]

impl PartialEq<SRT_EPOLL_FLAGS> for SRT_EPOLL_FLAGS[src]

impl StructuralEq for SRT_EPOLL_FLAGS[src]

impl StructuralPartialEq for SRT_EPOLL_FLAGS[src]

Auto Trait Implementations

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.