struct Product { product_id: int, name: str, price_dkk_cent: int, amount: T, } struct Receipt { receipt_id: int, timestamp: str, products: Product[], } // vim: syntax=rust commentstring=//\ %s