pub trait Data<T>: InnerData<T>where T: ?Sized,{ // Required methods fn to_ro(&self) -> RoData<T>; fn has_changed(&self) -> bool; }
Private trait for the RwData and RoData structs.
RwData
RoData