Struct librsync::Patch [] [src]

pub struct Patch<'a, B: 'a, D> { /* fields omitted */ }

A struct to apply a delta to a basis file, to recreate the new file.

This type takes a Read + Seek stream for the base file, and a Read stream for the delta file. It then provides another Read stream from which get the resulting patched file.

Methods

impl<'a, B: Read + Seek + 'a, D: Read> Patch<'a, B, BufReader<D>>
[src]

Creates a new patch stream.

This constructor takes a Read + Seek stream for the basis file (base parameter), and a Read stream for the delta file (delta parameter). It produces a stream from which read the resulting patched file.

impl<'a, B: Read + Seek + 'a, D: BufRead> Patch<'a, B, D>
[src]

Creates a new patch stream by using a BufRead as delta stream.

This constructor specializes the new constructor by taking a BufRead instance as delta parameter. Prefer this constructor if you already have a BufRead as input stream, since it avoids wrapping the input stream into another BufRead instance. See new constructor for more details on the parameters.

Unwraps this stream and returns the underlying streams.

Trait Implementations

impl<'a, B, D: BufRead> Read for Patch<'a, B, D>
[src]

Pull some bytes from this source into the specified buffer, returning how many bytes were read. Read more

Read all bytes until EOF in this source, placing them into buf. Read more

Read all bytes until EOF in this source, placing them into buf. Read more

Read the exact number of bytes required to fill buf. Read more

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

Transforms this Read instance to an Iterator over its bytes. Read more

🔬 This is a nightly-only experimental API. (io)

the semantics of a partial read/write of where errors happen is currently unclear and may change

Transforms this Read instance to an Iterator over chars. Read more

Creates an adaptor which will chain this stream with another. Read more

Creates an adaptor which will read at most limit bytes from it. Read more

impl<'a, B: 'a, D> Send for Patch<'a, B, D> where
    B: Send,
    D: Send
[src]