pub enum DoneKind {
Batch,
Procedure,
InProcedure,
}Expand description
Which of the three DONE tokens arrived.
They are the same shape but mean different things: DONEINPROC ends one
statement inside a procedure, DONEPROC ends the procedure, DONE ends a
batch. Only the first carries a row count for a statement run through
sp_executesql.
Variants§
Trait Implementations§
impl Copy for DoneKind
impl Eq for DoneKind
impl StructuralPartialEq for DoneKind
Auto Trait Implementations§
impl Freeze for DoneKind
impl RefUnwindSafe for DoneKind
impl Send for DoneKind
impl Sync for DoneKind
impl Unpin for DoneKind
impl UnsafeUnpin for DoneKind
impl UnwindSafe for DoneKind
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