Trait svgdom::WriteBuffer [] [src]

pub trait WriteBuffer {
    fn write_buf_opt(&self, opt: &WriteOptions, buf: &mut Vec<u8>);

    fn write_buf(&self, buf: &mut Vec<u8>) { ... }
}

The trait for writing a data to the buffer.

Required Methods

Writes data to the Vec<u8> buffer using specified WriteOptions.

Provided Methods

Writes data to the Vec<u8> buffer using default WriteOptions.

Implementors