pub trait FocusInput {
// Required method
fn to_prompt(&self) -> String;
}Expand description
Input for a Focus call — either a simple string or a structured context.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
Implementations on Foreign Types§
Source§impl FocusInput for str
Simple case: pass a string directly.
impl FocusInput for str
Simple case: pass a string directly.