Enum komple_framework_utils::funds::FundsError
source · pub enum FundsError {
Std(StdError),
InvalidDenom {
got: String,
expected: String,
},
InvalidFunds {
got: String,
expected: String,
},
MissingFunds {},
InvalidCw20Token {},
}Variants
Std(StdError)
InvalidDenom
InvalidFunds
MissingFunds
Fields
InvalidCw20Token
Fields
Trait Implementations
sourceimpl Debug for FundsError
impl Debug for FundsError
sourceimpl Display for FundsError
impl Display for FundsError
sourceimpl Error for FundsError
impl Error for FundsError
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<StdError> for FundsError
impl From<StdError> for FundsError
sourceimpl PartialEq<FundsError> for FundsError
impl PartialEq<FundsError> for FundsError
sourcefn eq(&self, other: &FundsError) -> bool
fn eq(&self, other: &FundsError) -> bool
impl StructuralPartialEq for FundsError
Auto Trait Implementations
impl RefUnwindSafe for FundsError
impl Send for FundsError
impl Sync for FundsError
impl Unpin for FundsError
impl UnwindSafe for FundsError
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