pub trait RecipeInput:
DowncastType
+ Debug
+ Send
+ Sync
+ 'static {
// Required method
fn is_empty(&self) -> bool;
}Expand description
Immutable input snapshot used while matching a recipe type.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".