pub trait BasicAddress: Eq + PartialEq<Self> + Debug + Display + Send + Sync + Clone + Hash + AsRef<[u8]> + for<'a> TryFrom<&'a [u8], Error = Error> + FromStr + Serialize + DeserializeOwned + 'static { }
Expand description

A marker trait for general addresses.

Implementors§