Struct git2::OdbPackwriter [−][src]
pub struct OdbPackwriter<'repo> { /* fields omitted */ }Expand description
A stream to write a packfile to the ODB
Implementations
impl<'repo> OdbPackwriter<'repo>[src]
impl<'repo> OdbPackwriter<'repo>[src]pub fn progress<F>(&mut self, cb: F) -> &mut OdbPackwriter<'repo>ⓘNotable traits for OdbPackwriter<'repo>
impl<'repo> Write for OdbPackwriter<'repo> where
F: FnMut(Progress<'_>) -> bool + 'repo, [src]
pub fn progress<F>(&mut self, cb: F) -> &mut OdbPackwriter<'repo>ⓘNotable traits for OdbPackwriter<'repo>
impl<'repo> Write for OdbPackwriter<'repo> where
F: FnMut(Progress<'_>) -> bool + 'repo, [src]The callback through which progress is monitored. Be aware that this is called inline, so performance may be affected.
Trait Implementations
impl<'repo> Drop for OdbPackwriter<'repo>[src]
impl<'repo> Drop for OdbPackwriter<'repo>[src]impl<'repo> Write for OdbPackwriter<'repo>[src]
impl<'repo> Write for OdbPackwriter<'repo>[src]fn write(&mut self, buf: &[u8]) -> Result<usize>[src]
fn write(&mut self, buf: &[u8]) -> Result<usize>[src]Write a buffer into this writer, returning how many bytes were written. Read more
fn flush(&mut self) -> Result<()>[src]
fn flush(&mut self) -> Result<()>[src]Flush this output stream, ensuring that all intermediately buffered contents reach their destination. Read more
fn is_write_vectored(&self) -> bool[src]
fn is_write_vectored(&self) -> bool[src]🔬 This is a nightly-only experimental API. (
can_vector)Determines if this Writer has an efficient write_vectored
implementation. Read more
fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>1.0.0[src]
fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>1.0.0[src]Attempts to write an entire buffer into this writer. Read more
fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>[src]
fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>[src]🔬 This is a nightly-only experimental API. (
write_all_vectored)Attempts to write multiple buffers into this writer. Read more