Struct weave::DeltaWriter [] [src]

pub struct DeltaWriter<'n> { /* fields omitted */ }

A DeltaWriter is used to write a new delta. Data should be written to the writer, and then the close method called to update the weave file with the new delta.

Methods

impl<'n> DeltaWriter<'n>
[src]

Construct a writer for a new delta. The naming convention and the tags set where the names will be written, and what tags will be associated with the convention. The base is the existing delta that the change should be based on.

Trait Implementations

impl<'n> Write for DeltaWriter<'n>
[src]

Write a buffer into this object, returning how many bytes were written. Read more

Flush this output stream, ensuring that all intermediately buffered contents reach their destination. Read more

Attempts to write an entire buffer into this write. Read more

Writes a formatted string into this writer, returning any error encountered. Read more

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