Function gix_archive::write_to

source ·
pub fn write_to<W, Find, E>(
    _tree: &oid,
    _find: Find,
    _out: W,
    _opts: Options
) -> Result<(), Error<E>>where
    W: Write,
    Find: for<'a> FnMut(&oid, &'a mut Vec<u8>) -> Result<Data<'a>, E>,
    E: Error + Send + Sync + 'static,
Expand description

Use find to traverse tree and fetch the contained blobs to write to out configured according to opts.

Limitations

  • .gitattributes aren’t considered, and filters are not applied, affecting correctness.