pub trait Page<L, E>: Serializewhere E: Debug + From<Error>,{ // Required method fn page(c: &mut L) -> Result<Self, E> where Self: Sized; }