Skip to main content

Resolver

Trait Resolver 

Source
pub trait Resolver {
    // Required method
    fn add_resolve(&self, resolve: Rc<dyn Resolve + 'static>);
}
Expand description

A Resolver is used to register any Resolve functions that need to be called.

Required Methods§

Source

fn add_resolve(&self, resolve: Rc<dyn Resolve + 'static>)

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§