pub enum ExecOutcome {
Rows {
columns: Vec<ColumnInfo>,
rows: Vec<Value>,
truncated: bool,
truncated_at_rows: Option<usize>,
truncated_at_bytes: Option<usize>,
},
Command {
affected: usize,
},
}Variants§
Rows
Fields
§
columns: Vec<ColumnInfo>Command
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ExecOutcome
impl RefUnwindSafe for ExecOutcome
impl Send for ExecOutcome
impl Sync for ExecOutcome
impl Unpin for ExecOutcome
impl UnsafeUnpin for ExecOutcome
impl UnwindSafe for ExecOutcome
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