quilt-rs 0.3.0

Rust library for accessing Quilt data packages.
Documentation
//!
//! # Entry
//! 
//! Entry wraps a Row4 with a reference to its parent Manifest4.
//! It is the primary unit of data in a Manifest4.
//! 
pub struct Entry4 {
    parent: Manifest4,
    row4: Row4,
}

impl Entry4 {
    pub async fn new(parent: Manifest4, row4: Row4) -> Self {
        Entry4 {
            parent,
            row4,
        }
    }
}