//! `RelEntry<Rel, Data, Rest>` — type-level linked list for relation data storage.
use PhantomData;
/// Stores one relation's data plus the rest of the chain.
///
/// A `QueryRow` with two included relations has store type:
/// ```rust
/// # let _ = r####"
/// RelEntry<RelPosts, Vec<SelectPost>, RelEntry<RelInvitedBy, Option<SelectUser>, ()>>
/// # "####;
/// ```