/// Information about the metadata or chunk data contained within the source.
pubtraitContentInfo{/// Length of the data.
fnlen(&self)->u64;/// Offset into the overall source.
fnoffset(&self)->u64;}// Helper to use content info from provided data.
// Not all ways of access the chunks will be through the views.
implContentInfo for (u64, u64) {fnlen(&self)->u64{self.0}fnoffset(&self)->u64{self.1}}