Trait postgres::stmt::ReadWithInfo
[−]
[src]
pub trait ReadWithInfo { fn read_with_info(
&mut self,
buf: &mut [u8],
info: &CopyInfo
) -> Result<usize>; }
Like Read
except that a CopyInfo
object is provided as well.
All types that implement Read
also implement this trait.
Required Methods
Implementors
impl<R: Read> ReadWithInfo for R