pub trait ResolveOwned<'a> {
// Required method
fn resolve_owned(self, ctx: &Context<'_>) -> Result<Option<FieldValue<'a>>>;
}Required Methods§
fn resolve_owned(self, ctx: &Context<'_>) -> Result<Option<FieldValue<'a>>>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".