#[non_exhaustive]#[repr(i8)]pub enum PreparedStatementStatus {
Other(i32),
FoundRow,
Done,
}Expand description
This enumeration is the list of the possible status outcomes for the
execute_prepared(&mut self) function.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Other(i32)
Indicates the actual error type id from SQLITE as an inner value.
FoundRow
Indicates that another row of output is available.
Done
Indicates that an operation has completed.
Trait Implementations§
Source§impl Clone for PreparedStatementStatus
impl Clone for PreparedStatementStatus
Source§fn clone(&self) -> PreparedStatementStatus
fn clone(&self) -> PreparedStatementStatus
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PreparedStatementStatus
impl Debug for PreparedStatementStatus
Source§impl PartialEq for PreparedStatementStatus
impl PartialEq for PreparedStatementStatus
impl Copy for PreparedStatementStatus
impl StructuralPartialEq for PreparedStatementStatus
Auto Trait Implementations§
impl Freeze for PreparedStatementStatus
impl RefUnwindSafe for PreparedStatementStatus
impl Send for PreparedStatementStatus
impl Sync for PreparedStatementStatus
impl Unpin for PreparedStatementStatus
impl UnwindSafe for PreparedStatementStatus
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