pub trait IntoInlineConnection<T, R: ConnectionResolver + ?Sized> {
// Required method
fn into_inline_connection(self, connection_resolver: R) -> T;
}
Expand description
Takes ~T<ReferencedConnection>
to ~T<InlinedConnection>
by recursively
inlining connections and resolving any referenced connections into their
inlined version.
Note that this trait is overly generic.