pub struct SqlQueryResponse<T>where
T: TryFromBytes,{
pub consumes: HashMap<String, ConsumedCapacity>,
pub rows: Vec<T>,
pub sql_statement_type: SqlStatementType,
pub next_search_token: Option<String>,
}
Fields§
§consumes: HashMap<String, ConsumedCapacity>
§rows: Vec<T>
§sql_statement_type: SqlStatementType
§next_search_token: Option<String>
Trait Implementations§
Source§impl<T> Clone for SqlQueryResponse<T>where
T: TryFromBytes + Clone,
impl<T> Clone for SqlQueryResponse<T>where
T: TryFromBytes + Clone,
Source§fn clone(&self) -> SqlQueryResponse<T>
fn clone(&self) -> SqlQueryResponse<T>
Returns a duplicate 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<T> Debug for SqlQueryResponse<T>where
T: TryFromBytes + Debug,
impl<T> Debug for SqlQueryResponse<T>where
T: TryFromBytes + Debug,
Source§impl<T> TryFrom<SqlQueryResponse> for SqlQueryResponse<T>where
T: TryFromBytes,
impl<T> TryFrom<SqlQueryResponse> for SqlQueryResponse<T>where
T: TryFromBytes,
Auto Trait Implementations§
impl<T> Freeze for SqlQueryResponse<T>
impl<T> RefUnwindSafe for SqlQueryResponse<T>where
T: RefUnwindSafe,
impl<T> Send for SqlQueryResponse<T>where
T: Send,
impl<T> Sync for SqlQueryResponse<T>where
T: Sync,
impl<T> Unpin for SqlQueryResponse<T>where
T: Unpin,
impl<T> UnwindSafe for SqlQueryResponse<T>where
T: UnwindSafe,
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