pub trait AddressLike: Clone + Debug + Display + PartialEq + Eq + PartialOrd + Ord + Hash { }
Expand description

Marks either String or cosmwasm_std::Addr.

String is used in unverified types, such as messages and query responses. Addr is used in verified types, which are to be stored in blockchain state.

This trait is intended to be used as a generic in type definitions.

Implementations on Foreign Types§

source§

impl AddressLike for Addr

source§

impl AddressLike for String

Implementors§