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
ReadIndicates that the reading portion of this socket should be shut down.
WriteIndicates that the writing portion of this socket should be shut down.
BothShut down both the reading and writing portions of this socket.