gix-object 0.49.0

Immutable and mutable git objects with decoding and encoding support
Documentation
use std::{convert::Infallible, io};

use crate::{Blob, BlobRef, Kind};

impl crate::WriteTo for BlobRef<'_> {
    /// Write the blobs data to `out` verbatim.
    fn write_to(&self, out: &mut dyn io::Write) -> io::Result<()> {
        out.write_all(self.data)
    }

    fn kind(&self) -> Kind {
        Kind::Blob
    }

    fn size(&self) -> u64 {
        self.data.len() as u64
    }
}

impl crate::WriteTo for Blob {
    /// Write the blobs data to `out` verbatim.
    fn write_to(&self, out: &mut dyn io::Write) -> io::Result<()> {
        self.to_ref().write_to(out)
    }

    fn kind(&self) -> Kind {
        Kind::Blob
    }

    fn size(&self) -> u64 {
        self.to_ref().size()
    }
}

impl Blob {
    /// Provide a `BlobRef` to this owned blob
    pub fn to_ref(&self) -> BlobRef<'_> {
        BlobRef { data: &self.data }
    }
}

impl BlobRef<'_> {
    /// Instantiate a `Blob` from the given `data`, which is used as-is.
    pub fn from_bytes(data: &[u8]) -> Result<BlobRef<'_>, Infallible> {
        Ok(BlobRef { data })
    }

    /// Clone the data in this instance by allocating a new vector for a fully owned blob.
    pub fn into_owned(self) -> Blob {
        self.into()
    }
}