pub trait RecipeData:
ErasedType
+ Debug
+ Send
+ Sync
+ 'static {
// Provided method
fn properties(&self) -> Option<&RecipeProperties> { ... }
}Expand description
Passive data stored by a recipe.
Provided Methods§
fn properties(&self) -> Option<&RecipeProperties>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".