[][src]Struct librsync::Patch

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]

pub fn new(base: B, delta: D) -> Result<Self>[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]

pub fn with_buf_read(base: B, delta: D) -> Result<Self>[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.

pub fn into_inner(self) -> (B, D)[src]

Unwraps this stream and returns the underlying streams.

Trait Implementations

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

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

Auto Trait Implementations

impl<'a, B, D> !RefUnwindSafe for Patch<'a, B, D>

impl<'a, B, D> !Sync for Patch<'a, B, D>

impl<'a, B, D> Unpin for Patch<'a, B, D> where
    D: Unpin

impl<'a, B, D> !UnwindSafe for Patch<'a, B, D>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.