pub enum SequenceValueError {
Undefined(String),
WrongKind {
name: String,
kind: &'static str,
},
CurrvalUndefined(String),
LastvalUndefined,
SetvalOutOfBounds {
name: String,
value: i64,
min: i64,
max: i64,
},
Exhausted {
name: String,
bound: &'static str,
value: i64,
},
ReadOnly(&'static str),
Security(SQLError),
Internal(String),
}Variants§
Undefined(String)
WrongKind
CurrvalUndefined(String)
LastvalUndefined
SetvalOutOfBounds
Exhausted
ReadOnly(&'static str)
Security(SQLError)
Internal(String)
Implementations§
Source§impl SequenceValueError
impl SequenceValueError
pub fn into_sql_error(self) -> SQLError
Trait Implementations§
Source§impl Debug for SequenceValueError
impl Debug for SequenceValueError
Source§impl Display for SequenceValueError
impl Display for SequenceValueError
Source§impl Error for SequenceValueError
impl Error for SequenceValueError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for SequenceValueError
impl RefUnwindSafe for SequenceValueError
impl Send for SequenceValueError
impl Sync for SequenceValueError
impl Unpin for SequenceValueError
impl UnsafeUnpin for SequenceValueError
impl UnwindSafe for SequenceValueError
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
impl<T> ErasedDestructor for Twhere
T: 'static,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more