Trait postgres::stmt::WriteWithInfo [] [src]

pub trait WriteWithInfo {
    fn write_with_info(&mut self, buf: &[u8], info: &CopyInfo) -> Result<usize>;
}

Like Write except that a CopyInfo object is provided as well.

All types that implement Write also implement this trait.

Required Methods

fn write_with_info(&mut self, buf: &[u8], info: &CopyInfo) -> Result<usize>

Like Write::write.

Implementors