pub struct DBExecResult {
pub rows_affected: u64,
pub last_insert_id: Option<i64>,
}
Fields§
§rows_affected: u64
§last_insert_id: Option<i64>
Trait Implementations§
Source§impl Clone for DBExecResult
impl Clone for DBExecResult
Source§fn clone(&self) -> DBExecResult
fn clone(&self) -> DBExecResult
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 DBExecResult
impl Debug for DBExecResult
Source§impl<'de> Deserialize<'de> for DBExecResult
impl<'de> Deserialize<'de> for DBExecResult
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 From<MssqlQueryResult> for DBExecResult
impl From<MssqlQueryResult> for DBExecResult
Source§fn from(arg: MssqlQueryResult) -> Self
fn from(arg: MssqlQueryResult) -> Self
Converts to this type from the input type.
Source§impl From<MySqlQueryResult> for DBExecResult
impl From<MySqlQueryResult> for DBExecResult
Source§fn from(arg: MySqlQueryResult) -> Self
fn from(arg: MySqlQueryResult) -> Self
Converts to this type from the input type.
Source§impl From<PgQueryResult> for DBExecResult
impl From<PgQueryResult> for DBExecResult
Source§fn from(arg: PgQueryResult) -> Self
fn from(arg: PgQueryResult) -> Self
Converts to this type from the input type.
Source§impl From<SqliteQueryResult> for DBExecResult
impl From<SqliteQueryResult> for DBExecResult
Source§fn from(arg: SqliteQueryResult) -> Self
fn from(arg: SqliteQueryResult) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DBExecResult
impl RefUnwindSafe for DBExecResult
impl Send for DBExecResult
impl Sync for DBExecResult
impl Unpin for DBExecResult
impl UnwindSafe for DBExecResult
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more