pub trait ConnectionResolver {
    // Required method
    fn resolve_connection(&self, id: GlobalId) -> Connection<InlinedConnection>;
}
Expand description

Permits any struct to take a GlobalId into an inlined connection.

It is safe to assume that if this id does not refer to a catalog connection, this function will panic.

Required Methods§

Implementations on Foreign Types§

source§

impl<R: ConnectionResolver + ?Sized> ConnectionResolver for &R

Implementors§