Trait AddressSpaceUtil

Source
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§

Provided Methods§

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.

Implementors§