[][src]Trait postgres_extension::rust_utils::Write

pub trait Write {
    fn write(&mut self, buf: &[u8]) -> Result<usize>;
fn flush(&mut self) -> Result<()>; fn write_all(&mut self, buf: &[u8]) -> Result<()> { ... }
fn write_fmt(&mut self, fmt: Arguments) -> Result<()> { ... }
fn by_ref(&mut self) -> &mut Self
    where
        Self: Sized
, { ... } }

Required methods

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

fn flush(&mut self) -> Result<()>

Loading content...

Provided methods

fn write_all(&mut self, buf: &[u8]) -> Result<()>

fn write_fmt(&mut self, fmt: Arguments) -> Result<()>

fn by_ref(&mut self) -> &mut Self where
    Self: Sized

Loading content...

Implementations on Foreign Types

impl<'a> Write for &'a mut [i8]
[src]

fn write_fmt(&mut self, fmt: Arguments) -> Result<()>
[src]

fn by_ref(&mut self) -> &mut Self where
    Self: Sized
[src]

Loading content...

Implementors

Loading content...