pub struct SqlStatementResult {
pub rows_affected: u64,
pub returning: Option<SqlQueryResult>,
}Fields§
§rows_affected: u64§returning: Option<SqlQueryResult>Trait Implementations§
Source§impl Clone for SqlStatementResult
impl Clone for SqlStatementResult
Source§fn clone(&self) -> SqlStatementResult
fn clone(&self) -> SqlStatementResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SqlStatementResult
impl Debug for SqlStatementResult
Source§impl<'de> Deserialize<'de> for SqlStatementResult
impl<'de> Deserialize<'de> for SqlStatementResult
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
Source§impl PartialEq for SqlStatementResult
impl PartialEq for SqlStatementResult
Source§impl Serialize for SqlStatementResult
impl Serialize for SqlStatementResult
impl StructuralPartialEq for SqlStatementResult
Auto Trait Implementations§
impl Freeze for SqlStatementResult
impl RefUnwindSafe for SqlStatementResult
impl Send for SqlStatementResult
impl Sync for SqlStatementResult
impl Unpin for SqlStatementResult
impl UnsafeUnpin for SqlStatementResult
impl UnwindSafe for SqlStatementResult
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