gimli
gimli copied to clipboard
`FrameDescriptionEntry`s should contain a reference rather than a copy of their `CommonInformationEntry`
There are so many FDEs for each CIE (that's the whole point of CIEs) so we end up copying the same data many many times.
Alternatively, we could make FDEs parametrized by any C: AsRef<CommonInformationEntry> or something like that.