pub struct StreamingDetectionConfig {
pub stream_parameter_names: Vec<String>,
pub sse_content_types: Vec<String>,
pub event_type_patterns: Vec<String>,
}Expand description
Configuration for detecting streaming endpoints from OpenAPI specs
Fields§
§stream_parameter_names: Vec<String>Parameter names that indicate streaming capability
sse_content_types: Vec<String>Content types that indicate SSE responses
event_type_patterns: Vec<String>Schema name patterns for event types
Trait Implementations§
Source§impl Clone for StreamingDetectionConfig
impl Clone for StreamingDetectionConfig
Source§fn clone(&self) -> StreamingDetectionConfig
fn clone(&self) -> StreamingDetectionConfig
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 StreamingDetectionConfig
impl Debug for StreamingDetectionConfig
Auto Trait Implementations§
impl Freeze for StreamingDetectionConfig
impl RefUnwindSafe for StreamingDetectionConfig
impl Send for StreamingDetectionConfig
impl Sync for StreamingDetectionConfig
impl Unpin for StreamingDetectionConfig
impl UnwindSafe for StreamingDetectionConfig
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