Struct Atof Endpoint Section Config
Generated from cargo doc --no-deps -p nemo-relay -p nemo-relay-adaptive -p nemo-relay-ffi.
pub struct AtofEndpointSectionConfig {
pub url: String,
pub transport: String,
pub headers: HashMap<String, String>,
pub timeout_millis: u64,
}
Streaming destination for raw ATOF events.
Fields
url: String
Endpoint URL.
transport: String
Transport: http_post, websocket, or ndjson.
headers: HashMap<String, String>
Headers applied to endpoint requests or handshakes.
timeout_millis: u64
Per-endpoint timeout in milliseconds.
Trait Implementations
impl Clone for AtofEndpointSectionConfig
impl Clone for AtofEndpointSectionConfig
clone
fn clone(&self) -> AtofEndpointSectionConfig
clone_from
fn clone_from(&mut self, source: &Self)
impl Debug for AtofEndpointSectionConfig
impl Debug for AtofEndpointSectionConfig
fmt
fn fmt(&self, f: &mut Formatter<'_>) -> Result
impl<'de> Deserialize<'de> for AtofEndpointSectionConfig
impl<'de> Deserialize<'de> for AtofEndpointSectionConfig
deserialize
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl Serialize for AtofEndpointSectionConfig
impl Serialize for AtofEndpointSectionConfig
serialize
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where
__S: Serializer,