Enum ibc_client_cw::types::ContractError
source · pub enum ContractError {
Std(StdError),
Context(ContextError),
Commitment(CommitmentError),
Identifier(IdentifierError),
Path(PathError),
ProtoDecode(DecodeError),
}Variants§
Std(StdError)
Context(ContextError)
Commitment(CommitmentError)
Identifier(IdentifierError)
Path(PathError)
ProtoDecode(DecodeError)
Trait Implementations§
source§impl Debug for ContractError
impl Debug for ContractError
source§impl Display for ContractError
impl Display for ContractError
source§impl From<ClientError> for ContractError
impl From<ClientError> for ContractError
source§fn from(err: ClientError) -> ContractError
fn from(err: ClientError) -> ContractError
Converts to this type from the input type.
source§impl From<CommitmentError> for ContractError
impl From<CommitmentError> for ContractError
source§fn from(original: CommitmentError) -> ContractError
fn from(original: CommitmentError) -> ContractError
Converts to this type from the input type.
source§impl From<ContextError> for ContractError
impl From<ContextError> for ContractError
source§fn from(original: ContextError) -> ContractError
fn from(original: ContextError) -> ContractError
Converts to this type from the input type.
source§impl From<ContractError> for StdError
impl From<ContractError> for StdError
source§fn from(err: ContractError) -> StdError
fn from(err: ContractError) -> StdError
Converts to this type from the input type.
source§impl From<DecodeError> for ContractError
impl From<DecodeError> for ContractError
source§fn from(original: DecodeError) -> ContractError
fn from(original: DecodeError) -> ContractError
Converts to this type from the input type.
source§impl From<IdentifierError> for ContractError
impl From<IdentifierError> for ContractError
source§fn from(original: IdentifierError) -> ContractError
fn from(original: IdentifierError) -> ContractError
Converts to this type from the input type.
source§impl From<PathError> for ContractError
impl From<PathError> for ContractError
source§fn from(original: PathError) -> ContractError
fn from(original: PathError) -> ContractError
Converts to this type from the input type.
source§impl From<StdError> for ContractError
impl From<StdError> for ContractError
source§fn from(original: StdError) -> ContractError
fn from(original: StdError) -> ContractError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ContractError
impl RefUnwindSafe for ContractError
impl Send for ContractError
impl Sync for ContractError
impl Unpin for ContractError
impl UnwindSafe for ContractError
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