pub trait UVProfileable {
// Required method
fn profile(
&mut self,
model: &Model,
profile_settings: &ProfileSettings,
) -> Result<UVProfile>;
}Required Methods§
fn profile( &mut self, model: &Model, profile_settings: &ProfileSettings, ) -> Result<UVProfile>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".