Trait asio::NonBlocking [] [src]

pub trait NonBlocking: Sized + AsRawFd {
    fn get_non_blocking(&self) -> bool;
    fn set_non_blocking(&self, on: bool);

    fn native_get_non_blocking(&self) -> Result<bool> { ... }
    fn native_set_non_blocking(&self, on: bool) -> Result<()> { ... }
}

Required Methods

fn get_non_blocking(&self) -> bool

fn set_non_blocking(&self, on: bool)

Provided Methods

Implementors