r_git 1.0.1

A git implementation in Rust
Documentation
1
2
3
4
5
6
pub trait Storable {
    fn set_oid(&mut self, oid: String);
    fn blob_type(&self) -> String;
    fn data(&self) -> String;
    // fn parse(oid: String, content: Vec<u8>) -> Self;
}