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