pub trait GetTargetPathForAIExpansionFromSeed {
// Required method
fn target_path_for_ai_json_expansion_from_seed(
&self,
target_dir: &Path,
expected_content_type: &ExpectedContentType,
) -> PathBuf;
}Required Methods§
fn target_path_for_ai_json_expansion_from_seed( &self, target_dir: &Path, expected_content_type: &ExpectedContentType, ) -> PathBuf
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".