Struct git2::BlobWriter [−][src]
pub struct BlobWriter<'repo> { /* fields omitted */ }Expand description
A structure to represent a git writestream for blobs
Implementations
impl<'repo> BlobWriter<'repo>[src]
impl<'repo> BlobWriter<'repo>[src]Trait Implementations
impl<'repo> Drop for BlobWriter<'repo>[src]
impl<'repo> Drop for BlobWriter<'repo>[src]impl<'repo> Write for BlobWriter<'repo>[src]
impl<'repo> Write for BlobWriter<'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