| 1332 | /// `| 0b1000_01LL | vlen | address: varfmt | contents: [u8] | rlen |` |
| 1333 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
| 1334 | pub struct MemWrite<'d> { |
| 1335 | address: u64, |
| 1336 | contents: Cow<'d, [u8]>, |
| 1337 | } |
| 1338 | |
| 1339 | impl<'d> MemWrite<'d> { |
| 1340 | /// Constructs a new record indicating that `contents` have been written to `address`. |