#[non_exhaustive]pub enum SqlRoutineException {
ModifyingSqlDataNotPermitted,
ProhibitedSqlStatementAttempted,
ReadingSqlDataNotPermitted,
FunctionExecutedNoReturnStatement,
Other(String),
}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.
ModifyingSqlDataNotPermitted
ProhibitedSqlStatementAttempted
ReadingSqlDataNotPermitted
FunctionExecutedNoReturnStatement
Other(String)
Implementations§
Trait Implementations§
Source§impl Clone for SqlRoutineException
impl Clone for SqlRoutineException
Source§fn clone(&self) -> SqlRoutineException
fn clone(&self) -> SqlRoutineException
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 SqlRoutineException
impl Debug for SqlRoutineException
Source§impl FromStr for SqlRoutineException
impl FromStr for SqlRoutineException
Source§impl Hash for SqlRoutineException
impl Hash for SqlRoutineException
Source§impl PartialEq for SqlRoutineException
impl PartialEq for SqlRoutineException
impl Eq for SqlRoutineException
impl StructuralPartialEq for SqlRoutineException
Auto Trait Implementations§
impl Freeze for SqlRoutineException
impl RefUnwindSafe for SqlRoutineException
impl Send for SqlRoutineException
impl Sync for SqlRoutineException
impl Unpin for SqlRoutineException
impl UnwindSafe for SqlRoutineException
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