[][src]Struct weave::DeltaWriter

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]

pub fn new<'a, 'b, I>(
    nc: &dyn NamingConvention,
    tags: I,
    base: usize
) -> Result<DeltaWriter> where
    I: Iterator<Item = (&'a str, &'b str)>, 
[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.

pub fn close(self) -> Result<()>[src]

Trait Implementations

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

Auto Trait Implementations

impl<'n> Unpin for DeltaWriter<'n>

impl<'n> !Sync for DeltaWriter<'n>

impl<'n> !Send for DeltaWriter<'n>

impl<'n> !UnwindSafe for DeltaWriter<'n>

impl<'n> !RefUnwindSafe for DeltaWriter<'n>

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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