pub struct AnyQueryResult {
pub rows_affected: u64,
pub last_insert_id: Option<i64>,
}Fields§
§rows_affected: u64§last_insert_id: Option<i64>Implementations§
Source§impl AnyQueryResult
impl AnyQueryResult
pub fn rows_affected(&self) -> u64
pub fn last_insert_id(&self) -> Option<i64>
Auto Trait Implementations§
impl Freeze for AnyQueryResult
impl RefUnwindSafe for AnyQueryResult
impl Send for AnyQueryResult
impl Sync for AnyQueryResult
impl Unpin for AnyQueryResult
impl UnsafeUnpin for AnyQueryResult
impl UnwindSafe for AnyQueryResult
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