[go: up one dir, main page]

git-index 0.4.0

A work-in-progress crate of the gitoxide project dedicated implementing the git index file
Documentation
mod impls {
    use std::ops::{Deref, DerefMut};

    use crate::{File, State};

    impl Deref for File {
        type Target = State;

        fn deref(&self) -> &Self::Target {
            &self.state
        }
    }

    impl DerefMut for File {
        fn deref_mut(&mut self) -> &mut Self::Target {
            &mut self.state
        }
    }
}

pub mod init;
pub mod verify;