pub trait AddressExpr:
'static
+ Send
+ Sync {
// Required method
fn eval(&self, ctx: &BuildContext) -> Result<Address, BuildError>;
}Required Methods§
fn eval(&self, ctx: &BuildContext) -> Result<Address, BuildError>
Trait Implementations§
Source§impl AddressExpr for Box<dyn AddressExpr>
impl AddressExpr for Box<dyn AddressExpr>
fn eval(&self, ctx: &BuildContext) -> Result<Address, BuildError>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".