pub struct DatabricksConfig {
pub credentials: Arc<dyn CredentialProvider<Credential = DatabricksCredential>>,
pub retry_config: RetryConfig,
pub client_options: ClientOptions,
}Expand description
Unified Databricks auth configuration (result of building a DatabricksBuilder).
Fields§
§credentials: Arc<dyn CredentialProvider<Credential = DatabricksCredential>>§retry_config: RetryConfig§client_options: ClientOptionsTrait Implementations§
Source§impl Clone for DatabricksConfig
impl Clone for DatabricksConfig
Source§fn clone(&self) -> DatabricksConfig
fn clone(&self) -> DatabricksConfig
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 DatabricksConfig
impl Debug for DatabricksConfig
Source§impl RequestSigner for DatabricksConfig
impl RequestSigner for DatabricksConfig
Source§fn sign<'a>(
&'a self,
req: RequestBuilder,
) -> BoxFuture<'a, Result<RequestBuilder>>
fn sign<'a>( &'a self, req: RequestBuilder, ) -> BoxFuture<'a, Result<RequestBuilder>>
Sign a
reqwest::RequestBuilder, returning the modified builder.Auto Trait Implementations§
impl !Freeze for DatabricksConfig
impl !RefUnwindSafe for DatabricksConfig
impl !UnwindSafe for DatabricksConfig
impl Send for DatabricksConfig
impl Sync for DatabricksConfig
impl Unpin for DatabricksConfig
impl UnsafeUnpin for DatabricksConfig
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