use multihash::Hash;
pub struct Row3Hash {
value: String,
_type: String,
}
pub struct Row3 {
logical_key: String,
physical_key: Vec<String>,
size: usize,
hash: Row3Hash,
meta: HashMap<String, Json<T>>,
}
pub struct Row4 {
name: String,
place: String,
path: Option<UPath>,
size: usize,
hash: Hash,
info: HashMap<String, Json<T>>,
meta: HashMap<String, Json<T>>,
}
impl Row4 {
pub fn from_row3(row3: Row3) -> Self {
}
pub fn to_row3(&self) -> Row3 {
}
}