Skip to main content

FileData

Trait FileData 

Source
pub trait FileData: Deref<Target = [u8]> { }
Expand description

A byte-oriented backing store for pack data and indices.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<T> FileData for T
where T: Deref<Target = [u8]>,