pub trait HostConnection {
// Required methods
fn open<'life0, 'async_trait>(
&'life0 mut self,
address: String,
) -> Pin<Box<dyn Future<Output = Result<Resource<Connection>, Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn query<'life0, 'async_trait>(
&'life0 mut self,
self_: Resource<Connection>,
statement: String,
params: Vec<ParameterValue>,
) -> Pin<Box<dyn Future<Output = Result<RowSet, Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn execute<'life0, 'async_trait>(
&'life0 mut self,
self_: Resource<Connection>,
statement: String,
params: Vec<ParameterValue>,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn drop<'life0, 'async_trait>(
&'life0 mut self,
rep: Resource<Connection>,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}
Required Methods§
Sourcefn open<'life0, 'async_trait>(
&'life0 mut self,
address: String,
) -> Pin<Box<dyn Future<Output = Result<Resource<Connection>, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn open<'life0, 'async_trait>(
&'life0 mut self,
address: String,
) -> Pin<Box<dyn Future<Output = Result<Resource<Connection>, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Open a connection to the MySQL instance at address
.
Sourcefn query<'life0, 'async_trait>(
&'life0 mut self,
self_: Resource<Connection>,
statement: String,
params: Vec<ParameterValue>,
) -> Pin<Box<dyn Future<Output = Result<RowSet, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn query<'life0, 'async_trait>(
&'life0 mut self,
self_: Resource<Connection>,
statement: String,
params: Vec<ParameterValue>,
) -> Pin<Box<dyn Future<Output = Result<RowSet, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
query the database: select
Sourcefn execute<'life0, 'async_trait>(
&'life0 mut self,
self_: Resource<Connection>,
statement: String,
params: Vec<ParameterValue>,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
&'life0 mut self,
self_: Resource<Connection>,
statement: String,
params: Vec<ParameterValue>,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
execute command to the database: insert, update, delete
fn drop<'life0, 'async_trait>(
&'life0 mut self,
rep: Resource<Connection>,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Implementations on Foreign Types§
Source§impl<_T: HostConnection + ?Sized + Send> HostConnection for &mut _T
impl<_T: HostConnection + ?Sized + Send> HostConnection for &mut _T
Source§fn open<'life0, 'async_trait>(
&'life0 mut self,
address: String,
) -> Pin<Box<dyn Future<Output = Result<Resource<Connection>, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn open<'life0, 'async_trait>(
&'life0 mut self,
address: String,
) -> Pin<Box<dyn Future<Output = Result<Resource<Connection>, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Open a connection to the MySQL instance at address
.
Source§fn query<'life0, 'async_trait>(
&'life0 mut self,
self_: Resource<Connection>,
statement: String,
params: Vec<ParameterValue>,
) -> Pin<Box<dyn Future<Output = Result<RowSet, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn query<'life0, 'async_trait>(
&'life0 mut self,
self_: Resource<Connection>,
statement: String,
params: Vec<ParameterValue>,
) -> Pin<Box<dyn Future<Output = Result<RowSet, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
query the database: select
Source§fn execute<'life0, 'async_trait>(
&'life0 mut self,
self_: Resource<Connection>,
statement: String,
params: Vec<ParameterValue>,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
&'life0 mut self,
self_: Resource<Connection>,
statement: String,
params: Vec<ParameterValue>,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
execute command to the database: insert, update, delete