pub struct RestAPIConnection { /* private fields */ }
Implementations§
Source§impl<'o> RestAPIConnection
impl<'o> RestAPIConnection
pub async fn try_create(dsn: &str, name: String) -> Result<Self>
pub async fn query_row_batch(&self, sql: &str) -> Result<RowBatch>
Trait Implementations§
Source§impl Clone for RestAPIConnection
impl Clone for RestAPIConnection
Source§fn clone(&self) -> RestAPIConnection
fn clone(&self) -> RestAPIConnection
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Connection for RestAPIConnection
impl Connection for RestAPIConnection
fn info<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = ConnectionInfo> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn last_query_id(&self) -> Option<String>
fn close<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn exec<'life0, 'life1, 'async_trait>(
&'life0 self,
sql: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<i64>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn kill_query<'life0, 'life1, 'async_trait>(
&'life0 self,
query_id: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn query_iter<'life0, 'life1, 'async_trait>(
&'life0 self,
sql: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<RowIterator>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn query_iter_ext<'life0, 'life1, 'async_trait>(
&'life0 self,
sql: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<RowStatsIterator>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn query_raw_iter<'life0, 'life1, 'async_trait>(
&'life0 self,
sql: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<RawRowIterator>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Source§fn get_presigned_url<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
operation: &'life1 str,
stage: &'life2 str,
) -> Pin<Box<dyn Future<Output = Result<PresignedResponse>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
fn get_presigned_url<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
operation: &'life1 str,
stage: &'life2 str,
) -> Pin<Box<dyn Future<Output = Result<PresignedResponse>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Get presigned url for a given operation and stage location.
The operation can be “UPLOAD” or “DOWNLOAD”.
fn upload_to_stage<'life0, 'life1, 'async_trait>(
&'life0 self,
stage: &'life1 str,
data: Reader,
size: u64,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn load_data<'life0, 'life1, 'life2, 'life3, 'life4, 'life5, 'async_trait>(
&'life0 self,
sql: &'life1 str,
data: Reader,
size: u64,
file_format_options: Option<BTreeMap<&'life2 str, &'life3 str>>,
copy_options: Option<BTreeMap<&'life4 str, &'life5 str>>,
) -> Pin<Box<dyn Future<Output = Result<ServerStats>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: 'async_trait,
'life4: 'async_trait,
'life5: 'async_trait,
fn load_file<'life0, 'life1, 'life2, 'life3, 'life4, 'life5, 'life6, 'async_trait>(
&'life0 self,
sql: &'life1 str,
fp: &'life2 Path,
format_options: Option<BTreeMap<&'life3 str, &'life4 str>>,
copy_options: Option<BTreeMap<&'life5 str, &'life6 str>>,
) -> Pin<Box<dyn Future<Output = Result<ServerStats>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: 'async_trait,
'life4: 'async_trait,
'life5: 'async_trait,
'life6: 'async_trait,
fn stream_load<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
sql: &'life1 str,
data: Vec<Vec<&'life2 str>>,
) -> Pin<Box<dyn Future<Output = Result<ServerStats>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
fn version<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<String>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn query_row<'life0, 'life1, 'async_trait>(
&'life0 self,
sql: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<Option<Row>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn query_all<'life0, 'life1, 'async_trait>(
&'life0 self,
sql: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<Vec<Row>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn query_raw_all<'life0, 'life1, 'async_trait>(
&'life0 self,
sql: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<Vec<RawRow>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn put_files<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
local_file: &'life1 str,
stage: &'life2 str,
) -> Pin<Box<dyn Future<Output = Result<RowStatsIterator>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
fn get_files<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
stage: &'life1 str,
local_file: &'life2 str,
) -> Pin<Box<dyn Future<Output = Result<RowStatsIterator>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Auto Trait Implementations§
impl Freeze for RestAPIConnection
impl !RefUnwindSafe for RestAPIConnection
impl Send for RestAPIConnection
impl Sync for RestAPIConnection
impl Unpin for RestAPIConnection
impl !UnwindSafe for RestAPIConnection
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more