Enum asyncio::socket_base::Shutdown [] [src]

#[repr(i32)]
pub enum Shutdown { Read, Write, Both, }

Possible values which can be passed to the shutdown method.

Variants

Indicates that the reading portion of this socket should be shut down.

Indicates that the writing portion of this socket should be shut down.

Shut down both the reading and writing portions of this socket.

Trait Implementations

impl Into<i32> for Shutdown
[src]

Performs the conversion.