Skip to main content

AddressExpr

Trait AddressExpr 

Source
pub trait AddressExpr:
    'static
    + Send
    + Sync {
    // Required method
    fn eval(&self, ctx: &BuildContext) -> Result<Address, BuildError>;
}

Required Methods§

Trait Implementations§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl AddressExpr for &'static str

Source§

impl AddressExpr for Box<dyn AddressExpr>

Source§

impl AddressExpr for String

Source§

impl<T: AddressExpr> AddressExpr for Option<T>

Implementors§