pub trait ReflectionAdapterUninitialized<T: Database> {
    type ValidAdapter: ReflectionAdapter<T>;

    // Required methods
    fn set_connection_string(&mut self, connection_string: &str);
    fn connect(
        self
    ) -> impl Future<Output = Result<Self::ValidAdapter, ReflectionAdapterError>> + Send;
}

Required Associated Types§

Required Methods§

source

fn set_connection_string(&mut self, connection_string: &str)

source

fn connect( self ) -> impl Future<Output = Result<Self::ValidAdapter, ReflectionAdapterError>> + Send

Object Safety§

This trait is not object safe.

Implementors§