pub trait ReflectionAdapterUninitialized<T> {
// Required methods
fn set_connection_string(&mut self, connection_string: &str);
fn connect(
self
) -> impl Future<Output = Result<T, ReflectionAdapterError>> + Send;
}
Required Methods§
fn set_connection_string(&mut self, connection_string: &str)
fn connect( self ) -> impl Future<Output = Result<T, ReflectionAdapterError>> + Send
Object Safety§
This trait is not object safe.