gen-core 0.1.31

Core structs and representations for the gen sequence graph and version control system.
Documentation
1
2
3
4
5
6
7
pub trait Capnp<'a> {
    type Builder;
    type Reader;

    fn write_capnp(&self, builder: &mut Self::Builder);
    fn read_capnp(reader: Self::Reader) -> Self;
}