Docs.rs
netstring-0.4.1
netstring 0.4.1
Permalink
Docs.rs crate page
MIT
/
Apache-2.0
Links
Homepage
Documentation
Repository
crates.io
Source
Owners
icorderi
Dependencies
log ^0.3
normal
Versions
11.11%
of the crate is documented
Platform
i686-unknown-linux-gnu
x86_64-apple-darwin
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
netstring
0.4.1
Shutdown
Required Methods
shutdown
Implementations on Foreign Types
&'a [u8]
Box<T>
Sink
TcpStream
UnixStream
Vec<T>
Implementors
In crate netstring
netstring
Trait
Shutdown
Copy item path
Source
pub trait Shutdown { // Required method fn
shutdown
(&self, how:
ShutdownMode
) ->
Result
<
()
>; }
Required Methods
§
Source
fn
shutdown
(&self, how:
ShutdownMode
) ->
Result
<
()
>
Implementations on Foreign Types
§
Source
§
impl
Shutdown
for
Sink
Source
§
fn
shutdown
(&self, _how:
ShutdownMode
) ->
Result
<
()
>
Source
§
impl
Shutdown
for
TcpStream
Source
§
fn
shutdown
(&self, how:
ShutdownMode
) ->
Result
<
()
>
Source
§
impl
Shutdown
for
UnixStream
Source
§
fn
shutdown
(&self, how:
ShutdownMode
) ->
Result
<
()
>
Source
§
impl<'a>
Shutdown
for &'a [
u8
]
Source
§
fn
shutdown
(&self, _how:
ShutdownMode
) ->
Result
<
()
>
Source
§
impl<T>
Shutdown
for
Vec
<T>
Source
§
fn
shutdown
(&self, _how:
ShutdownMode
) ->
Result
<
()
>
Source
§
impl<T:
Shutdown
>
Shutdown
for
Box
<T>
Source
§
fn
shutdown
(&self, how:
ShutdownMode
) ->
Result
<
()
>
Implementors
§