pub struct RawStatementResult {
pub column_names: Vec<String>,
pub rows: Vec<Vec<Value>>,
pub affected_row_count: u64,
pub rows_read: u64,
pub rows_written: u64,
pub query_duration_ms: f64,
}Fields§
§column_names: Vec<String>§rows: Vec<Vec<Value>>§affected_row_count: u64§rows_read: u64§rows_written: u64§query_duration_ms: f64Auto Trait Implementations§
impl Freeze for RawStatementResult
impl RefUnwindSafe for RawStatementResult
impl Send for RawStatementResult
impl Sync for RawStatementResult
impl Unpin for RawStatementResult
impl UnsafeUnpin for RawStatementResult
impl UnwindSafe for RawStatementResult
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