pub trait BufferInterfaceBase {
type Error;
type AddressType: Address;
}Expand description
Common properties shared by BufferInterface & AsyncBufferInterface
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".