1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
use std::io;
use crate::{encode, BandRef, Channel, ErrorRef, PacketLineRef, TextRef};
impl<'a> BandRef<'a> {
/// Serialize this instance to `out`, returning the amount of bytes written.
///
/// The data written to `out` can be decoded with [`Borrowed::decode_band()]`.
pub fn write_to(&self, out: impl io::Write) -> io::Result<usize> {
match self {
BandRef::Data(d) => encode::band_to_write(Channel::Data, d, out),
BandRef::Progress(d) => encode::band_to_write(Channel::Progress, d, out),
BandRef::Error(d) => encode::band_to_write(Channel::Error, d, out),
}
}
}
impl<'a> TextRef<'a> {
/// Serialize this instance to `out`, appending a newline if there is none, returning the amount of bytes written.
pub fn write_to(&self, out: impl io::Write) -> io::Result<usize> {
encode::text_to_write(self.0, out)
}
}
impl<'a> ErrorRef<'a> {
/// Serialize this line as error to `out`.
///
/// This includes a marker to allow decoding it outside of a side-band channel, returning the amount of bytes written.
pub fn write_to(&self, out: impl io::Write) -> io::Result<usize> {
encode::error_to_write(self.0, out)
}
}
impl<'a> PacketLineRef<'a> {
/// Serialize this instance to `out` in git `packetline` format, returning the amount of bytes written to `out`.
pub fn write_to(&self, out: impl io::Write) -> io::Result<usize> {
match self {
PacketLineRef::Data(d) => encode::data_to_write(d, out),
PacketLineRef::Flush => encode::flush_to_write(out),
PacketLineRef::Delimiter => encode::delim_to_write(out),
PacketLineRef::ResponseEnd => encode::response_end_to_write(out),
}
}
}
|