pub struct RabbitMqAdapterConfig {
pub url: String,
pub prefix: String,
pub request_timeout_ms: u64,
pub connection_timeout_ms: u64,
pub nodes_number: Option<u32>,
}Fields§
§url: String§prefix: String§request_timeout_ms: u64§connection_timeout_ms: u64§nodes_number: Option<u32>Trait Implementations§
Source§impl Clone for RabbitMqAdapterConfig
impl Clone for RabbitMqAdapterConfig
Source§fn clone(&self) -> RabbitMqAdapterConfig
fn clone(&self) -> RabbitMqAdapterConfig
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 RabbitMqAdapterConfig
impl Debug for RabbitMqAdapterConfig
Source§impl Default for RabbitMqAdapterConfig
impl Default for RabbitMqAdapterConfig
Source§impl<'de> Deserialize<'de> for RabbitMqAdapterConfigwhere
RabbitMqAdapterConfig: Default,
impl<'de> Deserialize<'de> for RabbitMqAdapterConfigwhere
RabbitMqAdapterConfig: Default,
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 RabbitMqAdapterConfig
impl RefUnwindSafe for RabbitMqAdapterConfig
impl Send for RabbitMqAdapterConfig
impl Sync for RabbitMqAdapterConfig
impl Unpin for RabbitMqAdapterConfig
impl UnsafeUnpin for RabbitMqAdapterConfig
impl UnwindSafe for RabbitMqAdapterConfig
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