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
Implementors
impl<W: Write> WriteWithInfo for W