//!//! # Entry
//!//! Entry wraps a Row4 with a reference to its parent Manifest4.
//! It is the primary unit of data in a Manifest4.
//!pubstructEntry4{parent: Manifest4,
row4: Row4,
}implEntry4{pub async fnnew(parent: Manifest4, row4: Row4)->Self{
Entry4 {
parent,
row4,}}}