pub struct SummaryConfig {
pub kind: SummaryProviderKind,
pub api_key: String,
pub model: Option<String>,
}Expand description
Resolved summary configuration from config file and environment variables.
Fields§
§kind: SummaryProviderKindThe LLM provider kind.
api_key: StringAPI key for the provider.
model: Option<String>Optional model override (uses provider default if None).
Trait Implementations§
Source§impl Clone for SummaryConfig
impl Clone for SummaryConfig
Source§fn clone(&self) -> SummaryConfig
fn clone(&self) -> SummaryConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for SummaryConfig
impl RefUnwindSafe for SummaryConfig
impl Send for SummaryConfig
impl Sync for SummaryConfig
impl Unpin for SummaryConfig
impl UnsafeUnpin for SummaryConfig
impl UnwindSafe for SummaryConfig
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