inflorescence-libpijul 1.0.0-beta.11

Core library of Pijul, a distributed version control system based on a sound theory of collaborative work.
Documentation
1
2
3
4
5
6
7
8
9
10
use super::change_id::*;
use super::inode_metadata::*;
use super::vertex::*;

#[derive(Clone, Copy, Debug, PartialEq, PartialOrd, Eq, Ord)]
#[doc(hidden)]
pub struct InodeVertex {
    pub metadata: InodeMetadata,
    pub position: Position<ChangeId>,
}