pub type LogPage = CursorPage<LogChunk>;
pub struct LogPage { pub items: Vec<LogChunk>, pub next_cursor: Option<String>, }
items: Vec<LogChunk>
next_cursor: Option<String>