Returns the length, in bytes, of this stack allocation.
(&self)
| 802 | |
| 803 | /// Returns the length, in bytes, of this stack allocation. |
| 804 | fn len(&self) -> usize { |
| 805 | self.storage.capacity() * mem::size_of::<Align16>() |
| 806 | } |
| 807 | } |
| 808 | |
| 809 | impl fmt::Debug for MachineState { |
no test coverage detected