As the title describes, the function below is currently private, but I believe it should be marked as pub
fn into_model<M, N>(self) -> Selector<SelectTwoModel<M, N>>
where
M: FromQueryResult,
N: FromQueryResult,
{
Selector {
query: self.query,
selector: PhantomData,
}
}