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§
Sourcefn as_engine_ref(&self) -> EngineRef<'_>
fn as_engine_ref(&self) -> EngineRef<'_>
Returns a EngineRef
pointing to the underlying context.