pub struct ScvChildProvider<'a> {
pub wire_api: &'a str,
pub model: &'a str,
pub base_url: &'a str,
pub timeout_seconds: u64,
pub headers: &'a HashMap<String, Secret>,
pub hosted_web_search: bool,
}Expand description
The parts of SCV’s own provider that the nested SCV copies.
Fields§
§wire_api: &'a str§model: &'a str§base_url: &'a str§timeout_seconds: u64§headers: &'a HashMap<String, Secret>§hosted_web_search: boolOffer the endpoint’s hosted web search, as SCV’s own config does.
Auto Trait Implementations§
impl<'a> Freeze for ScvChildProvider<'a>
impl<'a> RefUnwindSafe for ScvChildProvider<'a>
impl<'a> Send for ScvChildProvider<'a>
impl<'a> Sync for ScvChildProvider<'a>
impl<'a> Unpin for ScvChildProvider<'a>
impl<'a> UnsafeUnpin for ScvChildProvider<'a>
impl<'a> UnwindSafe for ScvChildProvider<'a>
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