pub enum RawTransactionOutcome {
Committed {
statement_results: Vec<RawStatementResult>,
},
RolledBack {
failed_statement_index: usize,
error_message: String,
},
}Variants§
Auto Trait Implementations§
impl Freeze for RawTransactionOutcome
impl RefUnwindSafe for RawTransactionOutcome
impl Send for RawTransactionOutcome
impl Sync for RawTransactionOutcome
impl Unpin for RawTransactionOutcome
impl UnsafeUnpin for RawTransactionOutcome
impl UnwindSafe for RawTransactionOutcome
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