use super::{
client::Client,
manifest::Manifest4,
row4::Row4,
};
#[derive(Clone, Debug)]
pub struct Entry4 {
_manifest: Manifest4,
row4: Row4,
}
impl Entry4 {
pub async fn new(_manifest: Manifest4, row4: Row4) -> Self {
Entry4 {
_manifest,
row4,
}
}
pub fn to_string(&self) -> String {
format!("Entry4({})^{}", self.row4.to_string(), self._manifest.to_string())
}
#[allow(dead_code)]
pub fn get_client(&self) -> &Client {
self._manifest.get_client()
}
}