pub struct TraceDbClientConfig {
pub url: String,
pub token: String,
pub database_id: Option<String>,
pub branch_id: Option<String>,
pub request_timeout_ms: u64,
pub safe_retries: u8,
pub idempotency_retries: u8,
}Fields§
§url: String§token: String§database_id: Option<String>§branch_id: Option<String>§request_timeout_ms: u64§safe_retries: u8§idempotency_retries: u8Implementations§
Source§impl TraceDbClientConfig
impl TraceDbClientConfig
pub fn managed(url: impl Into<String>, token: impl Into<String>) -> Self
pub fn from_env() -> TraceDbClientResult<Self>
pub fn from_env_vars<K, V, I>(vars: I) -> TraceDbClientResult<Self>
pub fn with_database(self, database_id: impl Into<String>) -> Self
pub fn with_branch(self, branch_id: impl Into<String>) -> Self
pub fn with_database_branch( self, database_id: impl Into<String>, branch_id: impl Into<String>, ) -> Self
pub fn with_timeout(self, timeout: Duration) -> Self
pub fn with_safe_retries(self, retries: u8) -> Self
pub fn with_idempotency_retries(self, retries: u8) -> Self
Trait Implementations§
Source§impl Clone for TraceDbClientConfig
impl Clone for TraceDbClientConfig
Source§fn clone(&self) -> TraceDbClientConfig
fn clone(&self) -> TraceDbClientConfig
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 TraceDbClientConfig
impl Debug for TraceDbClientConfig
Source§impl<'de> Deserialize<'de> for TraceDbClientConfig
impl<'de> Deserialize<'de> for TraceDbClientConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for TraceDbClientConfig
impl PartialEq for TraceDbClientConfig
Source§fn eq(&self, other: &TraceDbClientConfig) -> bool
fn eq(&self, other: &TraceDbClientConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TraceDbClientConfig
impl Serialize for TraceDbClientConfig
impl Eq for TraceDbClientConfig
impl StructuralPartialEq for TraceDbClientConfig
Auto Trait Implementations§
impl Freeze for TraceDbClientConfig
impl RefUnwindSafe for TraceDbClientConfig
impl Send for TraceDbClientConfig
impl Sync for TraceDbClientConfig
impl Unpin for TraceDbClientConfig
impl UnsafeUnpin for TraceDbClientConfig
impl UnwindSafe for TraceDbClientConfig
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.