pub struct ResolvedClientConfig {
pub api_key: String,
pub base_url: String,
pub organization: Option<String>,
pub project: Option<String>,
pub user_agent: String,
pub timeout: Duration,
pub max_retries: u32,
}Expand description
Fully-resolved client configuration after environment loading and validation.
Fields§
§api_key: String§base_url: String§organization: Option<String>§project: Option<String>§user_agent: String§timeout: Duration§max_retries: u32Implementations§
Trait Implementations§
Source§impl Clone for ResolvedClientConfig
impl Clone for ResolvedClientConfig
Source§fn clone(&self) -> ResolvedClientConfig
fn clone(&self) -> ResolvedClientConfig
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 moreSource§impl Debug for ResolvedClientConfig
impl Debug for ResolvedClientConfig
Source§impl PartialEq for ResolvedClientConfig
impl PartialEq for ResolvedClientConfig
impl Eq for ResolvedClientConfig
impl StructuralPartialEq for ResolvedClientConfig
Auto Trait Implementations§
impl Freeze for ResolvedClientConfig
impl RefUnwindSafe for ResolvedClientConfig
impl Send for ResolvedClientConfig
impl Sync for ResolvedClientConfig
impl Unpin for ResolvedClientConfig
impl UnsafeUnpin for ResolvedClientConfig
impl UnwindSafe for ResolvedClientConfig
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