//! Module that represent [`Food`] in a fridge.
usechrono::NaiveDate;usesqlx::types::Uuid;/// Food struct that represent a row in the database.
#[derive(Debug, sqlx::FromRow, serde::Serialize, serde::Deserialize, impl_new::New)]pubstructFood{pub(crate)id: Uuid,
pub(crate)name: String,
pub(crate)expiration_date: NaiveDate,
}