Struct git_transport::client::RequestWriter [−][src]
pub struct RequestWriter<'a> { /* fields omitted */ }Expand description
A Write implementation optimized for writing packet lines.
A type implementing Write for packet lines, which when done can be transformed into a Read for
obtaining the response.
Implementations
methods with bonds to IO
pub fn new_from_bufread<W: Write + 'a>(
writer: W,
reader: Box<dyn ExtendedBufRead + Unpin + 'a>,
write_mode: WriteMode,
on_into_read: MessageKind
) -> Self
pub fn new_from_bufread<W: Write + 'a>(
writer: W,
reader: Box<dyn ExtendedBufRead + Unpin + 'a>,
write_mode: WriteMode,
on_into_read: MessageKind
) -> Self
Create a new instance from a writer (commonly a socket), a reader into which to transform once the
writes are finished, along with configuration for the write_mode and information about which message to write
when this instance is converted into a reader to read the request’s response.
Write the given message as packet line.
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
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
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