Struct postgres_binary_copy::BinaryCopyWriter [] [src]

pub struct BinaryCopyWriter<W> { /* fields omitted */ }

A ReadWithInfo implementation that processes binary-formatted input for use with COPY ... TO STDOUT (FORMAT binary) statements.

Methods

impl<W> BinaryCopyWriter<W> where
    W: WriteValue
[src]

Creates a new BinaryCopyWriter.

The writer will forward SQL values to the specified WriteValue.

Trait Implementations

impl<W> Debug for BinaryCopyWriter<W> where
    W: Debug
[src]

Formats the value using the given formatter.

impl<W> WriteWithInfo for BinaryCopyWriter<W> where
    W: WriteValue
[src]

Like Write::write.