pub trait AsEngineRef {
    // Required method
    fn as_engine_ref(&self) -> EngineRef<'_>;
}
Expand description

Helper trait for a value that is convertible to a EngineRef.

Required Methods§

source

fn as_engine_ref(&self) -> EngineRef<'_>

Returns a EngineRef pointing to the underlying context.

Implementors§