pub struct SearchServiceInfo {
pub base_url: String,
pub timeout: Duration,
pub user_agent: String,
}
Expand description
Information about the search service configuration
Fields§
§base_url: String
The base URL being used for API requests
timeout: Duration
Request timeout duration
user_agent: String
User agent string
Trait Implementations§
Source§impl Clone for SearchServiceInfo
impl Clone for SearchServiceInfo
Source§fn clone(&self) -> SearchServiceInfo
fn clone(&self) -> SearchServiceInfo
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 SearchServiceInfo
impl RefUnwindSafe for SearchServiceInfo
impl Send for SearchServiceInfo
impl Sync for SearchServiceInfo
impl Unpin for SearchServiceInfo
impl UnwindSafe for SearchServiceInfo
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