pub struct AzureServiceBusConfig {
pub connection_string: Option<String>,
pub namespace: Option<String>,
pub auth_method: AzureAuthMethod,
pub use_sessions: bool,
pub session_timeout: Duration,
}Expand description
Azure Service Bus configuration
Fields§
§connection_string: Option<String>§namespace: Option<String>§auth_method: AzureAuthMethod§use_sessions: bool§session_timeout: DurationTrait Implementations§
Source§impl Clone for AzureServiceBusConfig
impl Clone for AzureServiceBusConfig
Source§fn clone(&self) -> AzureServiceBusConfig
fn clone(&self) -> AzureServiceBusConfig
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 AzureServiceBusConfig
impl Debug for AzureServiceBusConfig
Source§impl<'de> Deserialize<'de> for AzureServiceBusConfig
impl<'de> Deserialize<'de> for AzureServiceBusConfig
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
Auto Trait Implementations§
impl Freeze for AzureServiceBusConfig
impl RefUnwindSafe for AzureServiceBusConfig
impl Send for AzureServiceBusConfig
impl Sync for AzureServiceBusConfig
impl Unpin for AzureServiceBusConfig
impl UnsafeUnpin for AzureServiceBusConfig
impl UnwindSafe for AzureServiceBusConfig
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