pub struct ProtocolsConfig {
pub http: ProtocolConfig,
pub graphql: ProtocolConfig,
pub grpc: ProtocolConfig,
pub websocket: ProtocolConfig,
pub smtp: ProtocolConfig,
pub mqtt: ProtocolConfig,
pub ftp: ProtocolConfig,
pub kafka: ProtocolConfig,
pub rabbitmq: ProtocolConfig,
pub amqp: ProtocolConfig,
}
Expand description
Protocols configuration
Fields§
§http: ProtocolConfig
HTTP protocol configuration
graphql: ProtocolConfig
GraphQL protocol configuration
grpc: ProtocolConfig
gRPC protocol configuration
websocket: ProtocolConfig
WebSocket protocol configuration
smtp: ProtocolConfig
SMTP protocol configuration
mqtt: ProtocolConfig
MQTT protocol configuration
ftp: ProtocolConfig
FTP protocol configuration
kafka: ProtocolConfig
Kafka protocol configuration
rabbitmq: ProtocolConfig
RabbitMQ protocol configuration
amqp: ProtocolConfig
AMQP protocol configuration
Trait Implementations§
Source§impl Clone for ProtocolsConfig
impl Clone for ProtocolsConfig
Source§fn clone(&self) -> ProtocolsConfig
fn clone(&self) -> ProtocolsConfig
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 ProtocolsConfig
impl Debug for ProtocolsConfig
Source§impl Default for ProtocolsConfig
impl Default for ProtocolsConfig
Source§impl<'de> Deserialize<'de> for ProtocolsConfig
impl<'de> Deserialize<'de> for ProtocolsConfig
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 ProtocolsConfig
impl RefUnwindSafe for ProtocolsConfig
impl Send for ProtocolsConfig
impl Sync for ProtocolsConfig
impl Unpin for ProtocolsConfig
impl UnwindSafe for ProtocolsConfig
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