pub trait AddressSpaceUtil: Sized {
// Required method
fn with_space(self, space: Space) -> AddressWithSpace;
// Provided methods
fn with_native_space(self) -> AddressWithSpace { ... }
fn with_evm_space(self) -> AddressWithSpace { ... }
}
Required Methods§
fn with_space(self, space: Space) -> AddressWithSpace
Provided Methods§
fn with_native_space(self) -> AddressWithSpace
fn with_evm_space(self) -> AddressWithSpace
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.