Struct quicr::SendStream[][src]

pub struct SendStream(_);

A stream that can only be used to send data

Trait Implementations

impl Write for SendStream
[src]

Write some bytes to the stream.

Indicate that no more data will be written. Read more

Abandon transmitting data on this stream. Read more

impl Write for SendStream
[src]

Write a buffer into this object, returning how many bytes were written. Read more

Flush this output stream, ensuring that all intermediately buffered contents reach their destination. Read more

Attempts to write an entire buffer into this write. Read more

Writes a formatted string into this writer, returning any error encountered. Read more

Important traits for &'a mut R

Creates a "by reference" adaptor for this instance of Write. Read more

impl AsyncWrite for SendStream
[src]

Initiates or attempts to shut down this writer, returning success when the I/O connection has completely shut down. Read more

Attempt to write bytes from buf into the object. Read more

Attempt to flush the object, ensuring that any buffered data reach their destination. Read more

Write a Buf into this value, returning how many bytes were written. Read more

Auto Trait Implementations

impl !Send for SendStream

impl !Sync for SendStream