Struct git_features::io::pipe::Writer [−][src]
pub struct Writer {
pub channel: SyncSender<Result<BytesMut>>,
// some fields omitted
}Expand description
The write-end of the pipe, receiving items to become available in the Reader.
It’s commonly used with the std::io::Write trait it implements.
Fields
channel: SyncSender<Result<BytesMut>>The channel through which bytes are transferred. Useful for sending std::io::Errors instead.
Trait Implementations
Write a buffer into this writer, returning how many bytes were written. Read more
Flush this output stream, ensuring that all intermediately buffered contents reach their destination. Read more
🔬 This is a nightly-only experimental API. (
can_vector)Determines if this Writer has an efficient write_vectored
implementation. Read more
Attempts to write an entire buffer into this writer. Read more
🔬 This is a nightly-only experimental API. (
write_all_vectored)Attempts to write multiple buffers into this writer. Read more
Writes a formatted string into this writer, returning any error encountered. Read more