pub struct AzureConfig {
pub credentials: AzureCredentialProvider,
pub retry_config: RetryConfig,
pub skip_signature: bool,
pub client_options: ClientOptions,
}Expand description
Configuration for Azure authentication
Fields§
§credentials: AzureCredentialProvider§retry_config: RetryConfig§skip_signature: bool§client_options: ClientOptionsTrait Implementations§
Source§impl Clone for AzureConfig
impl Clone for AzureConfig
Source§fn clone(&self) -> AzureConfig
fn clone(&self) -> AzureConfig
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 AzureConfig
impl Debug for AzureConfig
Source§impl RequestSigner for AzureConfig
impl RequestSigner for AzureConfig
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 AzureConfig
impl !RefUnwindSafe for AzureConfig
impl !UnwindSafe for AzureConfig
impl Send for AzureConfig
impl Sync for AzureConfig
impl Unpin for AzureConfig
impl UnsafeUnpin for AzureConfig
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