pub enum QueryResult {
RowLabeled(RowLabeled),
Affected(RowsAffected),
}
Variants§
RowLabeled(RowLabeled)
Affected(RowsAffected)
Trait Implementations§
Source§impl Debug for QueryResult
impl Debug for QueryResult
Source§impl From<RowLabeled> for QueryResult
impl From<RowLabeled> for QueryResult
Source§fn from(value: RowLabeled) -> Self
fn from(value: RowLabeled) -> Self
Converts to this type from the input type.
Source§impl From<RowsAffected> for QueryResult
impl From<RowsAffected> for QueryResult
Source§fn from(value: RowsAffected) -> Self
fn from(value: RowsAffected) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for QueryResult
impl RefUnwindSafe for QueryResult
impl Send for QueryResult
impl Sync for QueryResult
impl Unpin for QueryResult
impl UnwindSafe for QueryResult
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