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

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

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, Error>

Like Write::write.

Loading content...

Implementors

impl<W> WriteWithInfo for W where
    W: Write
[src]

Loading content...