pub struct PromptConfig {
pub file: String,
pub text: Option<String>,
pub provider_overlays: BTreeMap<String, String>,
pub model_overlays: BTreeMap<String, String>,
}Fields§
§file: String§text: Option<String>§provider_overlays: BTreeMap<String, String>§model_overlays: BTreeMap<String, String>Trait Implementations§
Source§impl Clone for PromptConfig
impl Clone for PromptConfig
Source§fn clone(&self) -> PromptConfig
fn clone(&self) -> PromptConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PromptConfig
impl Debug for PromptConfig
Source§impl Default for PromptConfig
impl Default for PromptConfig
impl Eq for PromptConfig
Source§impl PartialEq for PromptConfig
impl PartialEq for PromptConfig
Source§fn eq(&self, other: &PromptConfig) -> bool
fn eq(&self, other: &PromptConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PromptConfig
Auto Trait Implementations§
impl Freeze for PromptConfig
impl RefUnwindSafe for PromptConfig
impl Send for PromptConfig
impl Sync for PromptConfig
impl Unpin for PromptConfig
impl UnsafeUnpin for PromptConfig
impl UnwindSafe for PromptConfig
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