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

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

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

All types that implement Read also implement this trait.

Required methods

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

Like Read::read.

Loading content...

Implementors

impl<R> ReadWithInfo for R where
    R: Read
[src]

Loading content...