Struct hrana_client_proto::StmtResult
source · pub struct StmtResult {
pub cols: Vec<Col>,
pub rows: Vec<Vec<Value>>,
pub affected_row_count: u64,
pub last_insert_rowid: Option<i64>,
}
Fields§
§cols: Vec<Col>
§rows: Vec<Vec<Value>>
§affected_row_count: u64
§last_insert_rowid: Option<i64>
Trait Implementations§
source§impl Clone for StmtResult
impl Clone for StmtResult
source§fn clone(&self) -> StmtResult
fn clone(&self) -> StmtResult
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 Debug for StmtResult
impl Debug for StmtResult
source§impl<'de> Deserialize<'de> for StmtResult
impl<'de> Deserialize<'de> for StmtResult
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl RefUnwindSafe for StmtResult
impl Send for StmtResult
impl Sync for StmtResult
impl Unpin for StmtResult
impl UnwindSafe for StmtResult
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