usecrate::Cursor;/// Trait used by the CursorProvider's to be able to build the generated PageInfo structs from the codegen.
////// You shouldn't need to implement it yourself, it's just used in the generated code.
pubtraitPageInfoFactory<CursorT>
where
CursorT: Cursor,
{fnnew(has_prev_page:bool,
has_next_page:bool,
start_cursor:Option<CursorT>,
end_cursor:Option<CursorT>,
)->Self;}