pub struct Packer<W> { /* private fields */ }Implementations
sourceimpl<W: Write + Send + 'static> Packer<W>
impl<W: Write + Send + 'static> Packer<W>
pub fn new(inner: W, schema: &[TableField]) -> Result<Self>
pub fn table(&mut self) -> &mut Table
pub fn find_field(&self, name: &str) -> Option<(usize, &TableField)>
pub fn consider_flushing(&mut self) -> Result<()>
pub fn flush(&mut self) -> Result<()>
pub fn finish(self) -> Result<W>
Auto Trait Implementations
impl<W> !RefUnwindSafe for Packer<W>
impl<W> Send for Packer<W>
impl<W> Sync for Packer<W>
impl<W> Unpin for Packer<W>
impl<W> !UnwindSafe for Packer<W>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more