/// A trait for getting the underlying raw byte slices of data containers.
////// The expectation is that you can create an equal instance with this data given the additional
/// metadata needed.
pubtraitDataRef{/// Get the underlying bytes writable.
fndata_ref_mut(&mutself)->&mut[u8];/// Get the underlying bytes read-only.
fndata_ref(&self)->&[u8];}