pub trait GeometryViewCaptureAdapter {
// Required methods
fn adapter_name(&self) -> &'static str;
fn capture(
&self,
asset: &GeometryAsset,
view_spec: &GeometryCaptureViewSpec,
) -> Result<GeometryCaptureViewResult, String>;
}Required Methods§
fn adapter_name(&self) -> &'static str
fn capture( &self, asset: &GeometryAsset, view_spec: &GeometryCaptureViewSpec, ) -> Result<GeometryCaptureViewResult, String>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".