Enum sentry::routes::campaign::LatestSpendableError
source · pub enum LatestSpendableError {
Adapter(AdaptorError),
Overflow,
Pool(PoolError),
}
Variants
Adapter(AdaptorError)
Overflow
Pool(PoolError)
Trait Implementations
sourceimpl Debug for LatestSpendableError
impl Debug for LatestSpendableError
sourceimpl Display for LatestSpendableError
impl Display for LatestSpendableError
sourceimpl Error for LatestSpendableError
impl Error for LatestSpendableError
sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
sourceimpl From<Error> for LatestSpendableError
impl From<Error> for LatestSpendableError
sourceimpl From<LatestSpendableError> for Error
impl From<LatestSpendableError> for Error
sourcefn from(source: LatestSpendableError) -> Self
fn from(source: LatestSpendableError) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl !RefUnwindSafe for LatestSpendableError
impl Send for LatestSpendableError
impl Sync for LatestSpendableError
impl Unpin for LatestSpendableError
impl !UnwindSafe for LatestSpendableError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more