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§

Object Safety§

This trait is not object safe.

Implementors§