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§
Trait Implementations§
source§impl Debug for FundsError
impl Debug for FundsError
source§impl Display for FundsError
impl Display for FundsError
source§impl Error for FundsError
impl Error for FundsError
source§fn 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 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<StdError> for FundsError
impl From<StdError> for FundsError
source§impl PartialEq<FundsError> for FundsError
impl PartialEq<FundsError> for FundsError
source§fn eq(&self, other: &FundsError) -> bool
fn eq(&self, other: &FundsError) -> bool
This method tests for
self and other values to be equal, and is used
by ==.