pub struct GeneratedOutput {
pub rust_source: String,
pub provider_docs: HashMap<String, String>,
}Expand description
Output of the code generator.
Fields§
§rust_source: StringThe generated Rust source (for generated.rs).
provider_docs: HashMap<String, String>Per-provider markdown documentation keyed by provider identifier.
Keys are provider dev_ids (e.g. "anthropic", "ollama") and values
are markdown strings suitable for #![doc = include_str!(...)].
Auto Trait Implementations§
impl Freeze for GeneratedOutput
impl RefUnwindSafe for GeneratedOutput
impl Send for GeneratedOutput
impl Sync for GeneratedOutput
impl Unpin for GeneratedOutput
impl UnsafeUnpin for GeneratedOutput
impl UnwindSafe for GeneratedOutput
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more