pub trait ProbeFallback {
// Required method
fn probe_input_schema(&self) -> Value;
}Expand description
Fallback arm of the probe: selected for any T (one autoref on a
&SchemaProbe<T> receiver), yielding a permissive “any” schema. Method
resolution prefers ProbeTyped whenever its T: JsonSchema bound holds.
Required Methods§
fn probe_input_schema(&self) -> Value
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".