pub trait RegisterInterfaceBase {
type Error;
type AddressType: Address;
}Expand description
Common properties shared by RegisterInterface & AsyncRegisterInterface
Required Associated Types§
Sourcetype AddressType: Address
type AddressType: Address
The address type used by this interface
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".