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