Skip to main content

OperatorResolver

Trait OperatorResolver 

Source
pub trait OperatorResolver {
    type Error: Error + Send + Sync + 'static;

    // Required method
    fn resolve(
        &self,
        binding: &OperatorBinding,
    ) -> Result<Operator, Self::Error>;
}
Expand description

Resolves an Operator binding without rewriting operation paths.

Required Associated Types§

Source

type Error: Error + Send + Sync + 'static

Required Methods§

Source

fn resolve(&self, binding: &OperatorBinding) -> Result<Operator, Self::Error>

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§