Enum abstract_ibc_host::error::HostError
source · pub enum HostError {
Std(StdError),
NoCustomQueries,
AdminError(AdminError),
ParseReply(ParseReplyError),
SimpleIca(SimpleIcaError),
ChannelAlreadyRegistered,
InvalidReplyId,
ChannelNotClosed,
MissingProxyAddress,
NoTarget,
IbcHopping,
}Variants§
Std(StdError)
NoCustomQueries
AdminError(AdminError)
ParseReply(ParseReplyError)
SimpleIca(SimpleIcaError)
ChannelAlreadyRegistered
InvalidReplyId
ChannelNotClosed
MissingProxyAddress
NoTarget
IbcHopping
Trait Implementations§
source§impl Error for HostError
impl Error for HostError
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<AdminError> for HostError
impl From<AdminError> for HostError
source§fn from(source: AdminError) -> Self
fn from(source: AdminError) -> Self
Converts to this type from the input type.
source§impl From<ParseReplyError> for HostError
impl From<ParseReplyError> for HostError
source§fn from(source: ParseReplyError) -> Self
fn from(source: ParseReplyError) -> Self
Converts to this type from the input type.