pub trait ResponseContent {
// Required method
fn content(&self) -> String;
}Expand description
A trait for extracting the content from a language model’s response.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".